@digitalbranch/glob
v1.1.0
Published
simple glob utility voor nodejs
Downloads
1
Readme
Glob for nodejs
Simple sync glob utility for nodejs.
Supports globbing for ** and *
Usage
Install with npm
npm i @digitalbranch/glob
var glob = require("@digitalbranch/glob")
// options is optional
// Returns an array of matches: [
// filePath: String
//]
glob("**/*.js", options)
glob(pattern, [options])
pattern
{String}
Pattern to be matchedoptions
{Object}
return
[ filePath: String ]
Performs a synchronous glob search.
Options
cwd
The current working directory in which to search. Defaults toprocess.cwd()
.ignore
An array of globs to ignore.