mirror of
https://github.com/zadam/trilium.git
synced 2024-11-12 10:44:42 +08:00
8 lines
No EOL
287 B
JavaScript
8 lines
No EOL
287 B
JavaScript
/**
|
|
* Sync makes process can make data intermittently inconsistent. Processes which require strong data consistency
|
|
* (like consistency checks) can use this mutex to make sure sync isn't currently running.
|
|
*/
|
|
|
|
const Mutex = require('async-mutex').Mutex;
|
|
|
|
module.exports = new Mutex(); |