0.0.1 • Published 7 years ago

method-wrap v0.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

method-wrap

npm install method-wrap --save

example

const wrap = require("method-wrap");

const newMethod = wrap(function(data){
    console.log(data);
},"name","qq");

newMethod({type:'javascript'}).name("leo").qq("1405491181); 
// {name :'leo', qq: '1405491181' , type: 'javascript'}