Socket
Socket
Sign inDemoInstall

abstract-leveldown

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

abstract-leveldown - npm Package Compare versions

Comparing version 0.12.1 to 0.12.2

5

abstract/util.js

@@ -6,3 +6,4 @@ module.exports.verifyNotFoundError = function verifyNotFoundError (err) {

module.exports.isTypedArray = function isTypedArray (value) {
return value instanceof ArrayBuffer || value instanceof Uint8Array
}
return (typeof ArrayBuffer != 'undefined' && value instanceof ArrayBuffer)
|| (typeof Uint8Array != 'undefined' && value instanceof Uint8Array)
}

2

package.json
{
"name": "abstract-leveldown",
"description": "An abstract prototype matching the LevelDOWN API",
"version": "0.12.1",
"version": "0.12.2",
"contributors": [

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

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