source: trip-planner-front/node_modules/stylus/lib/functions/extname.js@ e29cc2e

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

initial commit

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