deprecated
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

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.method('dont use this anymore', console.log, oldfn);
 
var someobj = {};
 
// set up a getter/set for field that logs deprecated message once
deprecated.field('dont use this anymore', console.log, someobj, 'a', 123);
 
console.log(someobj.a); // 123

Readme

Keywords

none

Package Sidebar

Install

npm i deprecated

Weekly Downloads

200,528

Version

0.0.2

License

none

Last publish

Collaborators

  • fractal
  • yocontra