文件名称:p-lock:简单的承诺锁
文件大小:143KB
文件格式:ZIP
更新时间:2024-04-26 05:48:45
TypeScript
锁 简单的promise锁。 安装 yarn add p-lock npm install p-lock 原料药 种类 import { getLock , ReleaseFn } from "p-lock" ; function getLock ( ) : Lock ; type Lock = ( key ?: string ) => Promise < ReleaseFn> ; type ReleaseFn = ( ) => void ; 用法 import { writeFile } from "fs" ; import { getLock } from "p-lock" ; const lock = getLock ( ) ; lock ( "file" ) . then ( ( release ) => { setTimeout ( ( ) => { writeF
【文件预览】:
p-lock-master
----.gitignore(60B)
----package.json(968B)
----CHANGELOG.md(325B)
----tsconfig.json(234B)
----README.md(2KB)
----source()
--------index.ts(637B)
----test()
--------index.test.ts(1KB)
----.editorconfig(147B)
----yarn.lock(365KB)