fast memoize.js::rabbit2:最快的记忆库 源码
快速记忆 在计算中,记忆是一种优化技术,主要用于通过存储昂贵的函数调用的结果并在再次出现相同的输入时返回缓存的结果来加速计算机程序。 —维基百科 该库试图在支持N个参数JavaScript中制作最快的记忆库。 安装 npm install fast-memoize --save 用法 const memoize = require ( 'fast-memoize' ) const fn = function ( one , two , three ) { /* ... */ } const memoized = memoize ( fn ) memoized ( 'foo' , 3 , 'b
文件列表
fast-memoize_js-master.zip
(预估有个48文件)
fast-memoize.js-master
.gitignore
61B
README.md
5KB
.codeclimate.yml
198B
CHANGELOG.md
467B
typings
tests
.gitignore
18B
tsconfig.json
298B
package.json
947B
暂无评论