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.
16 lines (11 loc) • 315 B
text/typescript
import { log } from 'brolog'
import { VERSION } from './version'
/// <reference path="./typings.d.ts" />
// https://github.com/Microsoft/TypeScript/issues/14151#issuecomment-280812617
if (!Symbol.asyncIterator) {
(<any>Symbol).asyncIterator = Symbol.for('Symbol.asyncIterator')
}
export {
log,
VERSION,
}