import path from "path";

export const getFileExtension = (url: string|undefined) => {
  return path.extname(url!);
};


