Skip to content

Instantly share code, notes, and snippets.

@femyeda
Created February 2, 2019 18:41
Show Gist options
  • Save femyeda/b0982bded3d3ec5574766982ce650ad7 to your computer and use it in GitHub Desktop.
Save femyeda/b0982bded3d3ec5574766982ce650ad7 to your computer and use it in GitHub Desktop.
//TODO: Includ path to get extension
export default function stripExtenstion(filename, extension) {
const regex = new RegExp(`.${extension}$`, 'g')
return filename.replace(regex, '')
}
export const stripExtenstion = stripExtenstion;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment