You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
7 years ago | |
|---|---|---|
| .. | ||
| test | 7 years ago | |
| .npmignore | 7 years ago | |
| .travis.yml | 7 years ago | |
| LICENSE | 7 years ago | |
| README.md | 7 years ago | |
| index.js | 7 years ago | |
| package.json | 7 years ago | |
README.md
deprecated

Information
| Package | deprecated |
| 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