prince-mutex
v1.0.5
Published
Well... I got a very bad mutex implementation from GPT. I had to design one from scratch.. Is this the AI that is supposed to take my job? lol
Downloads
21
Maintainers
Readme
##Example Usage
const Mutex = require("prince-mutex");
const mutex = new Mutex();
const release = await mutex.lock();
//code for accessing critical section
//releasing mutex afterwards
release();