Removed deprecated methods from lib/path.js
This commit is contained in:
parent
a3604cf233
commit
d2c47b4f87
@ -56,9 +56,6 @@ exports.dirname = function (path) {
|
||||
}
|
||||
};
|
||||
|
||||
exports.filename = function () {
|
||||
throw new Error("path.filename is deprecated. Please use path.basename instead.");
|
||||
};
|
||||
exports.basename = function (path, ext) {
|
||||
var f = path.substr(path.lastIndexOf("/") + 1);
|
||||
if (ext && f.substr(-1 * ext.length) === ext) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user