Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
335 bytes
|
Line | |
---|
1 | var 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 |
|
---|
12 | function basename(p, ext){
|
---|
13 | utils.assertString(p, 'path');
|
---|
14 | return path.basename(p.val, ext && ext.val);
|
---|
15 | };
|
---|
16 | basename.params = ['p', 'ext'];
|
---|
17 | module.exports = basename;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.