文件名称:bind-fast:替换优化不佳的原生 bind()
文件大小:4KB
文件格式:ZIP
更新时间:2024-07-10 14:13:18
JavaScript
快速绑定 无需取消优化的本机 bind() 即可快速绑定方法。 当您想使用绑定但不希望它被取消优化时 如果你继续写这样的代码: this . on ( 'eventName' , function eventHandler ( ) { this . a = 1 ; this . doThing ( ) ; } . bind ( this ) ) ; 但与苦恼相比,使用捕捉封闭参考的性能的第十this的节点0.10.x,0.12.x和iojs那么这个模块是为你! 现在只是: var bindFast = require ( 'bind-fast' ) ; this . on ( 'eventName' , bindFast ( function eventHandler ( ) { this . a =
【文件预览】:
bind-fast-master
----LICENSE(1KB)
----test()
--------index.js(2KB)
----README.md(789B)
----.gitignore(587B)
----index.js(712B)
----package.json(875B)