sublevel-pouchdb
Advanced tools
Comparing version 8.0.1 to 9.0.0
@@ -186,3 +186,3 @@ import ltgt from 'ltgt'; | ||
nut.apply([{ | ||
key: key, value: value, | ||
key, value, | ||
prefix: prefix.slice(), type: 'put' | ||
@@ -325,5 +325,5 @@ }], mergeOpts(opts), function (err) { | ||
} | ||
this._destroyed = true; | ||
var self = this; | ||
@@ -334,3 +334,3 @@ /* istanbul ignore if */ | ||
} | ||
/* istanbul ignore else */ | ||
@@ -350,3 +350,3 @@ if (self._iterator) { | ||
} | ||
_read() { | ||
@@ -362,3 +362,3 @@ var self = this; | ||
} | ||
self._iterator.next(function (err, key, value) { | ||
@@ -371,4 +371,4 @@ if (err || (key === undefined && value === undefined)) { | ||
} | ||
value = self._makeData(key, value); | ||
@@ -375,0 +375,0 @@ if (!self._destroyed) { |
@@ -190,3 +190,3 @@ 'use strict'; | ||
nut.apply([{ | ||
key: key, value: value, | ||
key, value, | ||
prefix: prefix.slice(), type: 'put' | ||
@@ -329,5 +329,5 @@ }], mergeOpts(opts), function (err) { | ||
} | ||
this._destroyed = true; | ||
var self = this; | ||
@@ -338,3 +338,3 @@ /* istanbul ignore if */ | ||
} | ||
/* istanbul ignore else */ | ||
@@ -354,3 +354,3 @@ if (self._iterator) { | ||
} | ||
_read() { | ||
@@ -366,3 +366,3 @@ var self = this; | ||
} | ||
self._iterator.next(function (err, key, value) { | ||
@@ -375,4 +375,4 @@ if (err || (key === undefined && value === undefined)) { | ||
} | ||
value = self._makeData(key, value); | ||
@@ -379,0 +379,0 @@ if (!self._destroyed) { |
{ | ||
"name": "sublevel-pouchdb", | ||
"version": "8.0.1", | ||
"version": "9.0.0", | ||
"description": "Fork of level-sublevel with ony the subset of the API that PouchDB uses", | ||
@@ -14,3 +14,3 @@ "main": "./lib/index.js", | ||
}, | ||
"jsnext:main": "./lib/index.es.js", | ||
"module": "./lib/index.es.js", | ||
"contributors": [ | ||
@@ -27,8 +27,6 @@ { | ||
}, | ||
"module": "./lib/index.es.js", | ||
"files": [ | ||
"lib", | ||
"dist", | ||
"tonic-example.js" | ||
"dist" | ||
] | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31740