All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.util.getFileExtension.d.ts Maven / Gradle / Ivy

/**
 * ""                        -> ""
 * "noExtension"             -> ""
 * "file.txt"                -> ".txt"
 * "file.with.many.dots.doc" -> ".doc"
 * ".gitignore"              -> ""
 *
 * @param { string } fileName - the file name
 * @returns { string }
 */
declare const getFileExtension: (fileName: string) => string;
export default getFileExtension;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy