a really simple mutex jsr.io/@mary/mutex
typescript jsr
1# mutex 2 3[JSR](https://jsr.io/@mary/history) | [source code](https://tangled.sh/mary.my.id/pkg-mutex) 4 5a really simple mutex. 6 7```ts 8const mutex = new Mutex(); 9 10{ 11 using _lock = await mutex.acquire(); 12 13 // ... go about your day 14} 15```