joplin/ReactNativeClient/lib/services/DecryptionWorker.js

15 lines
189 B
JavaScript
Raw Normal View History

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