log-decorator
v1.1.3
Published
Log decorator
Readme
log-decorator
Log decorator
Requirements and Use
npm install log-decorator --saveUse
import log from 'log-decorator';
class A {
constructor() {}
@log
get(a,b,c) {
return 3;
}
}Output
get method called with [ { a: 2 }, 2 ]
get method returns 3