文件名称:advice.js:简单的 AOP 模块
文件大小:6KB
文件格式:ZIP
更新时间:2024-07-07 15:05:37
JavaScript
建议.js 适用于 Node.js 和浏览器的简单 AOP 库。 function base ( ) { } // compose a new function which calls a function after base returns var fn = advice . after ( base , function ( ) { console . log ( 'base was called' ) ; } ) ; var obj = { foo : function ( ) { } } ; // redefine a method which calls a function after obj.foo returns advice . after ( obj , 'foo' , function ( ) { console . log ( 'obj.foo w
【文件预览】:
advice.js-master
----bower.json(238B)
----.npmignore(16B)
----.travis.yml(122B)
----advice.js(2KB)
----LICENSE(1KB)
----test()
--------adviceSpec.js(4KB)
--------support()
----README.md(2KB)
----Makefile(380B)
----.gitignore(46B)
----index.js(854B)
----karma.conf.js(328B)
----package.json(462B)