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

@jsenv/filesystem

Package Overview
Dependencies
Maintainers
2
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.9.0 to 4.9.1

2

package.json
{
"name": "@jsenv/filesystem",
"version": "4.9.0",
"version": "4.9.1",
"license": "MIT",

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

@@ -19,2 +19,3 @@ import { resolveUrl, urlToFileSystemPath } from "@jsenv/urls";

followLink = true,
noEntryEffect = "throw",
}) => {

@@ -31,3 +32,6 @@ const fromUrl = assertAndNormalizeFileUrl(from);

if (!sourceStats) {
throw new Error(`nothing to move from ${fromPath}`);
if (noEntryEffect === "throw") {
throw new Error(`nothing to move from ${fromPath}`);
}
return;
}

@@ -34,0 +38,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