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

syntex-filesystem

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

syntex-filesystem - npm Package Compare versions

Comparing version 1.0.2-b8 to 1.0.2-b9

17

main.js

@@ -67,3 +67,3 @@ const fs = require('fs'), path = require('path');

{
return new Promise((resolve) => {
return new Promise((resolve, reject) => {

@@ -93,3 +93,3 @@ if(this.isReady() && filePath != null)

resolve(file, false);
resolve(file);
}

@@ -100,3 +100,3 @@ catch(e)

resolve(null, true);
reject();
}

@@ -108,3 +108,10 @@ }

resolve(null, error != null && error.code != 'ENOENT');
if(error != null && error.code != 'ENOENT')
{
reject();
}
else
{
resolve(null);
}
}

@@ -115,3 +122,3 @@ });

{
resolve(null, true);
reject();
}

@@ -118,0 +125,0 @@ });

{
"name": "syntex-filesystem",
"version": "1.0.2-b8",
"version": "1.0.2-b9",
"description": "A Basic File System",

@@ -12,3 +12,3 @@ "main": "main.js",

"dependencies": {
"syntex-logger": "1.0.8-b11"
"syntex-logger": "1.0.8-b21"
},

@@ -15,0 +15,0 @@ "keywords": [

@@ -33,3 +33,4 @@ # SynTex Filesystem

logger.debug(data);
});
}).catch(() => {}));
});

@@ -36,0 +37,0 @@ ```

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