+2
-1
@@ -133,3 +133,4 @@ 'use strict' | ||
| function areIdentical (srcStat, destStat) { | ||
| return destStat.ino && destStat.dev && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev | ||
| // stat.dev can be 0n on windows when node version >= 22.x.x | ||
| return destStat.ino !== undefined && destStat.dev !== undefined && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev | ||
| } | ||
@@ -136,0 +137,0 @@ |
+1
-1
| { | ||
| "name": "fs-extra", | ||
| "version": "11.3.0", | ||
| "version": "11.3.1", | ||
| "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.", | ||
@@ -5,0 +5,0 @@ "engines": { |
+2
-0
@@ -60,2 +60,4 @@ Node.js: fs-extra | ||
| **NOTE:** The deprecated constants `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, & `fs.X_OK` are not exported on Node.js v24.0.0+; please use their `fs.constants` equivalents. | ||
| ### ESM | ||
@@ -62,0 +64,0 @@ |
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
55543
0.46%1254
0.08%295
0.68%