source: trip-planner-front/node_modules/stylus/lib/functions/basename.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 335 bytes
Line 
1var utils = require('../utils')
2 , path = require('path');
3
4/**
5 * Return the basename of `path`.
6 *
7 * @param {String} path
8 * @return {String}
9 * @api public
10 */
11
12function basename(p, ext){
13 utils.assertString(p, 'path');
14 return path.basename(p.val, ext && ext.val);
15};
16basename.params = ['p', 'ext'];
17module.exports = basename;
Note: See TracBrowser for help on using the repository browser.