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

promised-io

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

promised-io - npm Package Compare versions

Comparing version 0.3.5 to 0.3.6

0

delay.js

@@ -0,0 +0,0 @@ /*

13

fs.js

@@ -25,3 +25,5 @@ /**

// async
exports[i] = convertNodeAsyncFunction(fs[i], i === "readFile");
if (fs[i]) {
exports[i] = convertNodeAsyncFunction(fs[i], i === "readFile");
}
}

@@ -53,4 +55,9 @@ else{

if (bytesRead === 0){
fs.close(fd);
deferred.resolve();
fs.close(fd, function (err) {
if(err){
deferred.reject(err);
return;
}
deferred.resolve();
});
}

@@ -57,0 +64,0 @@ else {

{
"name": "promised-io",
"version": "0.3.5",
"version": "0.3.6",
"author": {

@@ -5,0 +5,0 @@ "name": "Kris Zyp"

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