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