Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 219 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 219 Bytes

Installation

pnpm add @livekit/mutex

Usage

import { Mutex } from '@livekit/mutex';

const myLock = new Mutex();

const unlock = await myLock.lock();

try {
    ...
}
finally {
    unlock();
}