Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yuri2peter/yl-lock

A simple lock for js.
https://github.com/yuri2peter/yl-lock

Last synced: 6 days ago
JSON representation

A simple lock for js.

Awesome Lists containing this project

README

        

# yl-lock

A simple thread lock for js.

# How to Use

```javascript
const lock = require('yl-lock');

lock(async () => {
// some works...
}, 'your lock name')
```