UNPKG

175 BJavaScriptView Raw
1const { extname } = require('path');
2
3function removeExt(path) {
4 const ext = extname(path);
5 return path.slice(0, path.length - ext.length);
6}
7
8module.exports = removeExt;