Removed deprecated methods from lib/path.js

pull/5370/head
Micheil Smith 2010-10-12 10:06:44 +11:00 committed by Ryan Dahl
parent a3604cf233
commit d2c47b4f87
1 changed files with 0 additions and 3 deletions

View File

@ -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) {