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

rrdir

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rrdir - npm Package Compare versions

Comparing version 6.0.0 to 6.0.1

6

index.js

@@ -82,3 +82,3 @@ "use strict";

results.push(build(entry, path, stats));
if (entry.isDirectory()) results.push(...await rrdir(path, opts));
if (entry.isDirectory()) results.push(...await rrdir(path, opts, {includeMatcher, excludeMatcher}));
}

@@ -125,3 +125,3 @@

results.push(build(entry, path, stats));
if (entry.isDirectory()) results.push(...rrdir.sync(path, opts));
if (entry.isDirectory()) results.push(...rrdir.sync(path, opts, {includeMatcher, excludeMatcher}));
}

@@ -167,4 +167,4 @@

yield build(entry, path, stats);
if (entry.isDirectory()) yield* await rrdir.stream(path, opts);
if (entry.isDirectory()) yield* await rrdir.stream(path, opts, {includeMatcher, excludeMatcher});
}
};
{
"name": "rrdir",
"version": "6.0.0",
"version": "6.0.1",
"description": "Recursive directory reader with a delightful API",

@@ -5,0 +5,0 @@ "author": "silverwind <me@silverwind.io>",

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