1.1.0 • Published 3 years ago

@digitalbranch/glob v1.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

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 matched
  • options {Object}
  • return [ filePath: String ]

Performs a synchronous glob search.

Options

  • cwd The current working directory in which to search. Defaults to process.cwd().
  • ignore An array of globs to ignore.