1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00
Files
joplin/ReactNativeClient/lib/services/DecryptionWorker.js
2017-12-14 17:58:10 +00:00

15 lines
189 B
JavaScript

class DecryptionWorker {
constructor() {
this.state_ = 'idle';
}
start() {
if (this.state_ !== 'idle') return;
this.state_ = 'started';
}
}
module.exports = DecryptionWorker;