1class MemorySync { 2 constructor() { 3 this.data = null; 4 } 5 read() { 6 return this.data || null; 7 } 8 write(obj) { 9 this.data = obj; 10 } 11} 12module.exports = { MemorySync }; 13 14