abstract-leveldown
Advanced tools
Comparing version 0.11.2 to 0.11.3
@@ -101,3 +101,3 @@ /**** SETUP & UTILITY STUFF ****/ | ||
makeErrorKeyTest('empty String key', '', /key cannot be an empty String/) | ||
makeErrorKeyTest('empty Buffer key', new BufferType(0), /key cannot be an empty Buffer/) | ||
makeErrorKeyTest('empty Buffer key', new BufferType(0), /key cannot be an empty \w*Buffer/) | ||
makeErrorKeyTest('empty Array key', [], /key cannot be an empty String/) | ||
@@ -140,3 +140,3 @@ } | ||
makePutErrorTest('empty String value', 'foo', '', /value cannot be an empty String/) | ||
makePutErrorTest('empty Buffer value', 'foo', new BufferType(0), /value cannot be an empty Buffer/) | ||
makePutErrorTest('empty Buffer value', 'foo', new BufferType(0), /value cannot be an empty \w*Buffer/) | ||
makePutErrorTest('empty Array value', 'foo', [], /value cannot be an empty String/) | ||
@@ -143,0 +143,0 @@ } |
{ | ||
"name": "abstract-leveldown", | ||
"description": "An abstract prototype matching the LevelDOWN API", | ||
"version": "0.11.2", | ||
"version": "0.11.3", | ||
"contributors": [ | ||
@@ -6,0 +6,0 @@ "Rod Vagg <r@va.gg> (https://github.com/rvagg)", |
@@ -61,3 +61,2 @@ var path = require('path') | ||
} | ||
//if (key == +key) key = +key | ||
data.push({ key: key, value: value }) | ||
@@ -64,0 +63,0 @@ process.nextTick(next) |
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
112490
2543