🗼 towerdb
resiliently redundant storage stacks
Quick Usage
const Tower = //create a towerconst tower = //create a store from memoryconst table = {}const tmem = Tower //add store to towertower { await tower //=> world await tower //=> world //default option with sync function await tower await tower //=> world-0123456789 //default option with a promise bearing function { return { } } await tower //=> world (after waiting 2 seconds) await tower //=> world }