0.2.0 • Published 9 years ago

explore v0.2.0

Weekly downloads
22
License
MIT
Repository
-
Last release
9 years ago

Walks recursively down the file tree starting from the current directory executing functions on arbitrary file types.

example

function log(file) { console.log(file) }

// print the path of json or ruby files
explore("json|rb", log);

It can also accept an array of callbacks and a starting directory

explore(fileTypes, callbacks, startingPath, errCallback)
  • fileTypes string
  • callbacks function or array of functions
  • startingPath string (absolute)
  • errCallback function where first arg is error
0.2.0

9 years ago

0.1.0

9 years ago

0.0.1

11 years ago