mirror of https://github.com/jkjoy/sunpeiwen.git
18 lines
352 B
JavaScript
18 lines
352 B
JavaScript
var utils = require('../utils')
|
|
, path = require('path');
|
|
|
|
/**
|
|
* Return the basename of `path`.
|
|
*
|
|
* @param {String} path
|
|
* @return {String}
|
|
* @api public
|
|
*/
|
|
|
|
function basename(p, ext){
|
|
utils.assertString(p, 'path');
|
|
return path.basename(p.val, ext && ext.val);
|
|
};
|
|
basename.params = ['p', 'ext'];
|
|
module.exports = basename;
|