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

abstract-random-access

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

abstract-random-access - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

8

index.js

@@ -43,3 +43,3 @@ var EventEmitter = require('events').EventEmitter

if (typeof self._write !== 'function') return process.nextTick(callback)
self._write(offset, buffer, callback)
self._write(offset, buffer, callback)
}

@@ -73,3 +73,3 @@ }

function next (err) {
if (err) return cb(err)
if (err) return callback(err)
if (typeof self._close !== 'function') process.nextTick(closed)

@@ -99,3 +99,3 @@ self._close(closed)

function next (err) {
if (err) return cb(err)
if (err) return callback(err)
if (typeof self._end !== 'function') process.nextTick(callback)

@@ -114,3 +114,3 @@ else self._end(options, callback)

function next (err) {
if (err) return cb(err)
if (err) return callback(err)
if (typeof self._unlink !== 'function') process.nextTick(callback)

@@ -117,0 +117,0 @@ else self._unlink(callback)

{
"name": "abstract-random-access",
"version": "1.0.1",
"version": "1.0.2",
"description": "Base class for random access stores",
"repository": "juliangruber/abstract-random-access",
"license": "MIT",
"scripts": {
"test": "standard"
},
"dependencies": {
"inherits": "^2.0.1"
},
"devDependencies": {
"standard": "^7.1.2"
}
}
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