wallet-core/node_modules/deprecated
2016-10-10 03:43:44 +02:00
..
test add node_modules to address #4364 2016-10-10 03:43:44 +02:00
.npmignore add node_modules to address #4364 2016-10-10 03:43:44 +02:00
.travis.yml add node_modules to address #4364 2016-10-10 03:43:44 +02:00
index.js add node_modules to address #4364 2016-10-10 03:43:44 +02:00
LICENSE add node_modules to address #4364 2016-10-10 03:43:44 +02:00
package.json add node_modules to address #4364 2016-10-10 03:43:44 +02:00
README.md add node_modules to address #4364 2016-10-10 03:43:44 +02:00

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