Browse Source

Removed deprecated methods from lib/path.js

v0.7.4-release
Micheil Smith 14 years ago
committed by Ryan Dahl
parent
commit
d2c47b4f87
  1. 3
      lib/path.js

3
lib/path.js

@ -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) { exports.basename = function (path, ext) {
var f = path.substr(path.lastIndexOf("/") + 1); var f = path.substr(path.lastIndexOf("/") + 1);
if (ext && f.substr(-1 * ext.length) === ext) { if (ext && f.substr(-1 * ext.length) === ext) {

Loading…
Cancel
Save