mirror of
https://github.com/zero-peak/ZeroOmega.git
synced 2025-01-22 15:08:12 -05:00
11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
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; |