# mutex [JSR](https://jsr.io/@mary/history) | [source code](https://tangled.sh/mary.my.id/pkg-mutex) a really simple mutex. ```ts const mutex = new Mutex(); { using _lock = await mutex.acquire(); // ... go about your day } ```