Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

level-spaces

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

level-spaces - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

15

level-spaces.js

@@ -112,7 +112,11 @@ var levelup = require('levelup')

if (!options.reverse) {
options.gte = options.start || '\x00'
options.lte = options.end || '\x7f'
if (options.gte == null)
options.gte = options.start || '\x00'
if (options.lte == null)
options.lte = options.end || '\x7f'
} else {
options.gte = options.end || '\x00'
options.lte = options.start || '\x7f'
if (options.gte == null)
options.gte = options.end || '\x00'
if (options.lte == null)
options.lte = options.start || '\x7f'
}

@@ -151,4 +155,3 @@ delete options.start

if (err)
return next(err, key, value, callback)
return next(err, key && decode(key), value, callback)
next(err, decode(key), value, callback)

@@ -155,0 +158,0 @@ }

2

package.json
{
"name": "level-spaces",
"version": "2.0.0",
"version": "2.0.1",
"description": "Namespaced LevelUP instances",

@@ -5,0 +5,0 @@ "main": "level-spaces.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc