1.0.1 • Published 2 years ago
recursivefilereader v1.0.1
Recursive File reader in Directory
This package reads all the child files and return an array of file paths from a directory
Installation
Install recursivefilereader with npm install recursivefilereader
  npm install recursivefilereaderExample
const filereader = require("recursivefilereader");
filereader("./test1")
  .then((res) => console.log(res))
  .catch((err) => console.log(err));