Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi 6 năm trước cách đây
..
test cefd1c2ad0 updated sys and created publi 6 năm trước cách đây
.npmignore cefd1c2ad0 updated sys and created publi 6 năm trước cách đây
.travis.yml cefd1c2ad0 updated sys and created publi 6 năm trước cách đây
LICENSE cefd1c2ad0 updated sys and created publi 6 năm trước cách đây
README.md cefd1c2ad0 updated sys and created publi 6 năm trước cách đây
index.js cefd1c2ad0 updated sys and created publi 6 năm trước cách đây
package.json cefd1c2ad0 updated sys and created publi 6 năm trước cách đây

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