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.

17 lines (15 loc) 298 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, }