UNPKG

indexed-db-stream

Version:

Use node.js streams to read from / write to an IndexedDB.

14 lines 528 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TEST_DATABASE_NAME_PREFIX = "test-db-"; exports.TEST_OBJECT_STORE_NAME = "test-store"; exports.TEST_DATABASE_VERSION = 1; exports.TEST_DATA = [ { id: 1, value: "first", index: "a" }, { id: 2, value: "second", index: "b" }, { id: 3, value: "third", index: "c" }, { id: 4, value: "same", index: "d" }, { id: 5, value: "same", index: "d" }, { id: 6, value: "other", index: "e" }, ]; //# sourceMappingURL=spec-common.js.map