aop-s
v1.0.1
Published
AOP in JavaScript
Downloads
1
Readme
AOP
AOP in JavaScript
Install
Install with npm
$ npm install aop-s --save
###Usage
- register advice
var AOP = require('aop-s');
AOP.before('func',function(args){});
AOP.after(/^func/,function(args){})
AOP.around(/^func/,function(args){},function(ret,args){})
- execution
func.exec(args);