9 lines
276 B
JavaScript
9 lines
276 B
JavaScript
|
var path = require('path');
|
||
|
|
||
|
module.exports = function(npath, ext) {
|
||
|
if (typeof npath !== 'string') return npath;
|
||
|
if (npath.length === 0) return npath;
|
||
|
|
||
|
var nFileName = path.basename(npath, path.extname(npath))+ext;
|
||
|
return path.join(path.dirname(npath), nFileName);
|
||
|
};
|