?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/brizy/public/editor-client/src/utils/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/brizy/public/editor-client/src

?? Viewing: getExtension.ts

const rgx = /\.[^.]+$/;

export const getExtension = (src: string): string | undefined => {
  const result = rgx.exec(src);

  if (result && result.length) {
    const [ext] = result; // .ext
    return ext.replace(".", "").toLowerCase();
  }

  return undefined;
};


??

??