You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
299 B
11 lines
299 B
'use strict';
|
|
const path = require('path');
|
|
const filenamify = require('./filenamify');
|
|
|
|
const filenamifyPath = (filePath, options) => {
|
|
filePath = path.resolve(filePath);
|
|
return path.join(path.dirname(filePath), filenamify(path.basename(filePath), options));
|
|
};
|
|
|
|
module.exports = filenamifyPath;
|