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

fuse-bindings

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fuse-bindings - npm Package Compare versions

Comparing version 2.2.0 to 2.3.0

11

index.js

@@ -86,3 +86,12 @@ var bindings = require('bindings')

exports.unmount = function (mnt, cb) {
fuse.unmount(path.resolve(mnt), cb || noop)
var timeout = setTimeout(function () {
var err = new Error('Unmount took too long')
err.code = 'ETIMEDOUT'
if (cb) cb(err)
}, 2000)
fuse.unmount(path.resolve(mnt), function (err) {
clearTimeout(timeout)
if (cb) cb(err)
})
}

@@ -89,0 +98,0 @@

2

package.json
{
"name": "fuse-bindings",
"version": "2.2.0",
"version": "2.3.0",
"description": "Fully maintained fuse bindings for Node that aims to cover the entire FUSE api",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -124,3 +124,3 @@ # fuse-bindings

#### `ops.access(path, cb)`
#### `ops.access(path, mode, cb)`

@@ -127,0 +127,0 @@ Called before the filesystem accessed a file

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