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

leveldown

Package Overview
Dependencies
Maintainers
1
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

leveldown - npm Package Compare versions

Comparing version 0.8.3 to 0.9.0

deps/leveldb/leveldb-1.14.0/.npmignore

5

CHANGELOG.md

@@ -0,2 +1,7 @@

### 0.9.0 @ Oct 01 2013
* Upgrade from LevelDB@0.11.0 to LevelDB@0.14.0, includes change from .sst to .ldb file extension for SST files (@rvagg)
### 0.8.3 @ Sept 18 2013
* Upgrade to nan@0.4.0, better support for latest Node master & support for installing within directory structures containing spaces in directory names (@rvagg)

@@ -3,0 +8,0 @@

2

package.json
{
"name" : "leveldown"
, "description" : "A Node.js LevelDB binding, primary backend for LevelUP"
, "version" : "0.8.3"
, "version" : "0.9.0"
, "contributors" : [

@@ -6,0 +6,0 @@ "Rod Vagg <r@va.gg> (https://github.com/rvagg)"

@@ -41,10 +41,10 @@ const test = require('tap').test

t.ok(files.some(function (f) { return (/\.log$/).test(f) }), 'directory contains log file(s)')
t.notOk(files.some(function (f) { return (/\.sst$/).test(f) }), 'directory does not contain sst file(s)')
t.notOk(files.some(function (f) { return (/\.ldb$/).test(f) }), 'directory does not contain ldb file(s)')
leveldown.repair(location, function () {
files = fs.readdirSync(location)
t.notOk(files.some(function (f) { return (/\.log$/).test(f) }), 'directory does not contain log file(s)')
t.ok(files.some(function (f) { return (/\.sst$/).test(f) }), 'directory contains sst file(s)')
t.ok(files.some(function (f) { return (/\.ldb$/).test(f) }), 'directory contains ldb file(s)')
done(false)
})
})
})
})

Sorry, the diff of this file is not supported yet

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