UNPKG

flash-store

Version:

FlashStore is a Key-Value persistent storage with easy to use ES6 Map-like API(both Async and Sync support), powered by LevelDB and TypeScript.

7 lines (6 loc) 247 B
import { log } from './config'; import { VERSION } from './version'; import { FlashStore } from './flash-store'; import { FlashStoreSync } from './flash-store-sync'; export default FlashStore; export { log, FlashStoreSync, FlashStore, VERSION, };