gitextract_fo51vwzk/ ├── .gitignore ├── LICENSE ├── README.md ├── benchmarks/ │ ├── commonUtilities.js │ ├── ensureIndex.js │ ├── find.js │ ├── findOne.js │ ├── findWithIn.js │ ├── insert.js │ ├── loadDatabase.js │ ├── remove.js │ └── update.js ├── bower.json ├── browser-version/ │ ├── browser-specific/ │ │ └── lib/ │ │ ├── customUtils.js │ │ └── storage.js │ ├── build.js │ ├── out/ │ │ └── nedb.js │ ├── package.json │ └── test/ │ ├── async.js │ ├── chai.js │ ├── index.html │ ├── localforage.js │ ├── mocha.css │ ├── mocha.js │ ├── nedb-browser.js │ ├── playground.html │ ├── testLoad.html │ ├── testLoad.js │ ├── testPersistence.html │ ├── testPersistence.js │ ├── testPersistence2.html │ └── testPersistence2.js ├── index.js ├── lib/ │ ├── cursor.js │ ├── customUtils.js │ ├── datastore.js │ ├── executor.js │ ├── indexes.js │ ├── model.js │ ├── persistence.js │ └── storage.js ├── package.json ├── test/ │ ├── cursor.test.js │ ├── customUtil.test.js │ ├── db.test.js │ ├── executor.test.js │ ├── indexes.test.js │ ├── mocha.opts │ ├── model.test.js │ └── persistence.test.js └── test_lac/ ├── loadAndCrash.test.js ├── openFds.test.js ├── openFdsLaunch.sh ├── openFdsTestFile └── openFdsTestFile2