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

@jsenv/filesystem

Package Overview
Dependencies
Maintainers
0
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jsenv/filesystem - npm Package Compare versions

Comparing version 4.10.9 to 4.10.10

2

package.json
{
"name": "@jsenv/filesystem",
"version": "4.10.9",
"version": "4.10.10",
"license": "MIT",

@@ -5,0 +5,0 @@ "repository": {

@@ -109,3 +109,8 @@ import { URL_META } from "@jsenv/url-meta";

} catch (e) {
if (e.code === "ENOENT") {
if (
e.code === "ENOENT" ||
e.code === "EACCES" ||
e.code === "EPERM" ||
e.code === "ENOTDIR" // happens on mac12 sometimes
) {
return {

@@ -116,8 +121,2 @@ type: null,

}
if (e.code === "EACCES" || e.code === "EPERM") {
return {
type: null,
stat: null,
};
}
throw e;

@@ -124,0 +123,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