UNPKG

ryuudb

Version:

A lightweight, customizable JSON/YAML database for Node.js by Jr Busaco

14 lines (11 loc) 166 B
export class MemoryAdapter { constructor() { this.data = {}; } async read() { return this.data; } async write(data) { this.data = data; } }