UNPKG

fake-indexeddb

Version:

Fake IndexedDB: a pure JS in-memory implementation of the IndexedDB API

11 lines 304 B
import FDBCursor from "./FDBCursor.js"; class FDBCursorWithValue extends FDBCursor { value = undefined; constructor(source, range, direction, request) { super(source, range, direction, request); } toString() { return "[object IDBCursorWithValue]"; } } export default FDBCursorWithValue;