wishthis/node_modules/replace-ext/index.js

9 lines
276 B
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
var path = require('path');
2022-04-08 10:55:35 +00:00
module.exports = function(npath, ext) {
if (typeof npath !== 'string') return npath;
if (npath.length === 0) return npath;
2022-01-21 08:28:41 +00:00
2022-04-08 10:55:35 +00:00
var nFileName = path.basename(npath, path.extname(npath))+ext;
return path.join(path.dirname(npath), nFileName);
};