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

fs-readdir-recursive

Package Overview
Dependencies
Maintainers
4
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fs-readdir-recursive - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

2

index.js

@@ -12,3 +12,3 @@ var fs = require('fs')

var dir = path.join(root, prefix)
if (fs.lstatSync(dir).isDirectory())
if (fs.lstatSync(dir).isDirectory() || fs.lstatSync(dir).isSymbolicLink())
fs.readdirSync(dir)

@@ -15,0 +15,0 @@ .filter(filter)

{
"name": "fs-readdir-recursive",
"description": "Recursively read a directory",
"version": "0.0.1",
"version": "0.0.2",
"scripts": {

@@ -6,0 +6,0 @@ "test": "make test"

@@ -5,2 +5,8 @@ # fs.readdirSyncRecursive [![Build Status](https://travis-ci.org/jonathanong/fs-readdir-recursive.png)](https://travis-ci.org/jonathanong/fs-readdir-recursive)

## Install
```bash
npm install fs-readdir-recursive
```
## Example

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