idb-range

3.1.3 • Public • Published

idb-range

MongoDB inspired interface for IDBKeyRange.

Installation

npm install --save idb-range

Example

import range from 'idb-range'
 
range({ lte: 'a', gt: 'b' }) // IDBKeyRange {lower: "a", upper: "b", lowerOpen: true, upperOpen: true}
range({ gte: 'c' }) // IDBKeyRange {lower: "c", upper: undefined, lowerOpen: false, upperOpen: true}
 
// it accepts a specific value as a shortcut to IDBKeyRange.only
range('hello') // IDBKeyRange {lower: "hello", upper: "hello", lowerOpen: false, upperOpen: false}
// but it's more explicit to always use object notation
range({ eq: 'hello' })
 
// IDBKeyRange and no arguments are ignored
range(IDBKeyRange.only('hello')) // ignores IDBKeyRange instances
range() // null

range(opts)

Parse opts to valid IDBKeyRange.

Available options, when opts is an object:

  • gt - greater
  • lt - lighter
  • gte - greater equal
  • lte - lighter equal
  • eq - equal

License

MIT

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 3.1.3
    345
    • latest

Version History

Package Sidebar

Install

npm i idb-range

Weekly Downloads

246

Version

3.1.3

License

MIT

Last publish

Collaborators

  • alekseykulikov