Companion

Functions

Link copied to clipboard
fun bound(lower: JsAny?, upper: JsAny?, lowerOpen: Boolean = definedExternally, upperOpen: Boolean = definedExternally): IDBKeyRange

The bound() static method of the IDBKeyRange interface creates a new key range with the specified upper and lower bounds.

Link copied to clipboard
fun lowerBound(lower: JsAny?, open: Boolean = definedExternally): IDBKeyRange

The lowerBound() static method of the By default, it includes the lower endpoint value and is closed.

Link copied to clipboard
fun only(value: JsAny?): IDBKeyRange

The only() static method of the IDBKeyRange interface creates a new key range containing a single value.

Link copied to clipboard
fun upperBound(upper: JsAny?, open: Boolean = definedExternally): IDBKeyRange

The upperBound() static method of the it includes the upper endpoint value and is closed.