Skip to content

yocontra/deprecated

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Tool for deprecating things

Resources

License

Stars

Watchers

Forks

Packages

No packages published