Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created May 15, 2018 04:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goofmint/bdf5938007b068d5c05f905ed1d2e016 to your computer and use it in GitHub Desktop.
Save goofmint/bdf5938007b068d5c05f905ed1d2e016 to your computer and use it in GitHub Desktop.
let openRange = IDBKeyRange.bound(5, 10, true, true);
openRange.includes(5); // false
openRange.includes(10); // false
openRange.includes(7); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment