htc 7ca38fdcbb 善行少年PC端首次提交(基础版) 1 هفته پیش
..
test 7ca38fdcbb 善行少年PC端首次提交(基础版) 1 هفته پیش
.npmignore 7ca38fdcbb 善行少年PC端首次提交(基础版) 1 هفته پیش
.travis.yml 7ca38fdcbb 善行少年PC端首次提交(基础版) 1 هفته پیش
LICENSE 7ca38fdcbb 善行少年PC端首次提交(基础版) 1 هفته پیش
README.md 7ca38fdcbb 善行少年PC端首次提交(基础版) 1 هفته پیش
index.js 7ca38fdcbb 善行少年PC端首次提交(基础版) 1 هفته پیش
package.json 7ca38fdcbb 善行少年PC端首次提交(基础版) 1 هفته پیش

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