没有合适的资源?快使用搜索试试~ 我知道了~
onetime:确保一个函数仅被调用一次
共14个文件
ts:2个
js:2个
yml:2个
需积分: 5 0 下载量 152 浏览量
2021-04-12
12:53:22
上传
评论
收藏 6KB ZIP 举报
温馨提示
一度 确保一个函数仅被调用一次 多次调用时,它将返回第一次调用的返回值。 与模块不同,这不是顽皮的,并扩展Function.prototype 。 安装 $ npm install onetime 用法 import onetime from 'onetime' ; let index = 0 ; const foo = onetime ( ( ) => ++ index ) ; foo ( ) ; //=> 1 foo ( ) ; //=> 1 foo ( ) ; //=> 1 onetime . callCount ( foo ) ; //=> 3 import onetime from 'onetime' ; const foo = onetime ( ( ) => { } , { throw : true } ) ; foo ( ) ; foo ( ) ; //=> Error
资源推荐
资源详情
资源评论
收起资源包目录
onetime-main.zip (14个子文件)
onetime-main
.gitignore 23B
package.json 763B
.npmrc 19B
index.js 1022B
test.js 777B
.github
security.md 179B
workflows
main.yml 421B
funding.yml 113B
license 1KB
readme.md 2KB
index.test-d.ts 419B
.gitattributes 19B
.editorconfig 175B
index.d.ts 1KB
共 14 条
- 1
资源评论
吾自行
- 粉丝: 61
- 资源: 4670
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功