🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@lxf2513/readdir-sync-recursive

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lxf2513/readdir-sync-recursive - npm Package Compare versions

Comparing version
1.2.0
to
1.2.1
+3
-1
dist/index.cjs

@@ -37,3 +37,5 @@ 'use strict';

}
pathsQueue.forEach((i) => readdir(i));
for (let i = 0; i < pathsQueue.length; i++) {
readdir(pathsQueue[i]);
}
return readdirResults;

@@ -40,0 +42,0 @@ }

@@ -35,3 +35,5 @@ import { statSync, readdirSync } from 'node:fs';

}
pathsQueue.forEach((i) => readdir(i));
for (let i = 0; i < pathsQueue.length; i++) {
readdir(pathsQueue[i]);
}
return readdirResults;

@@ -38,0 +40,0 @@ }

{
"name": "@lxf2513/readdir-sync-recursive",
"version": "1.2.0",
"version": "1.2.1",
"description": "Reads the contents of the directory synchronously and recursively.",

@@ -5,0 +5,0 @@ "type": "module",