文件名称:p-memoize:记住承诺返回和异步功能
文件大小:6KB
文件格式:ZIP
更新时间:2024-05-31 20:17:26
JavaScript
p记忆 承诺返回和异步功能 通过将具有相同输入的调用结果缓存起来,对于加快连续的函数调用很有用。 默认情况下,仅考虑备忘录函数的第一个参数,并且仅适用于。 如果您需要按值缓存多个参数或缓存object ,请查看下面的。 安装 $ npm install p-memoize 用法 const pMemoize = require ( 'p-memoize' ) ; const got = require ( 'got' ) ; const memGot = pMemoize ( got , { maxAge : 1000 } ) ; ( async ( ) => { memGot ( 'https://sindresorhus.com' ) ; // This call is cached memGot ( 'https://sindresorhus.com' ) ; setTim
【文件预览】:
p-memoize-main
----index.test-d.ts(364B)
----.gitattributes(19B)
----.github()
--------workflows()
----test.js(2KB)
----license(1KB)
----index.d.ts(2KB)
----.npmrc(19B)
----.editorconfig(175B)
----.gitignore(23B)
----index.js(1001B)
----readme.md(2KB)
----package.json(869B)