kevin tessier 5eedee288e install npm 5 роки тому
..
test 5eedee288e install npm 5 роки тому
.npmignore 5eedee288e install npm 5 роки тому
.travis.yml 5eedee288e install npm 5 роки тому
LICENSE 5eedee288e install npm 5 роки тому
README.md 5eedee288e install npm 5 роки тому
index.js 5eedee288e install npm 5 роки тому
package.json 5eedee288e install npm 5 роки тому

README.md

deprecated NPM version Build Status Coveralls Status Dependency Status

Information

Packagedeprecated
Description Tool for deprecating things
Node Version >= 0.9

Usage

var oldfn = function(a,b) {
  return a+b;
};

// returns a new wrapper function that logs the deprecated function once
var somefn = deprecated('dont use this anymore', console.log, oldfn);

var someobj = {};

// set up a getter/set for field that logs deprecated message once
deprecated('dont use this anymore', console.log, someobj, 'a', 123);

console.log(someobj.a); // 123