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

@awesomeeng/awesome-utils

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@awesomeeng/awesome-utils - npm Package Compare versions

Comparing version 1.4.6 to 1.4.7

2

package.json
{
"name": "@awesomeeng/awesome-utils",
"version": "1.4.6",
"version": "1.4.7",
"author": "the awesome engineering company",

@@ -5,0 +5,0 @@ "license": "MIT",

# AwesomeUtils Release Notes
#### **Version 1.4.5**
#### **Version 1.4.7**
- AwesomeUtils.FS: Changes FS.stat and FS.statSync to resolve or return null if the file is not found.
#### **Version 1.4.6**
- Updating dependencies.

@@ -6,0 +10,0 @@

@@ -213,2 +213,3 @@ // (c) 2018, The Awesome Engineering Company, https://awesomeneg.com

catch (ex) {
if (ex.code==="ENOENT") resolve(null);
return reject(ex);

@@ -220,5 +221,10 @@ }

statSync(path) {
return FS.statSync(path);
try {
return FS.statSync(path);
}
catch (ex) {
if (ex.code==="ENOENT") return null;
throw ex;
}
}
}

@@ -225,0 +231,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