mywork / lib /lowdb /adapters /MemorySync.js
DeeCeeXxx's picture
Upload 199 files
6c07b9a verified
raw
history blame contribute delete
171 Bytes
class MemorySync {
constructor() {
this.data = null;
}
read() {
return this.data || null;
}
write(obj) {
this.data = obj;
}
}
module.exports = { MemorySync };