1.0.1 • Published 6 years ago

universal-glob v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

universal-glob NPM version Build Status Dependency Status Coverage percentage

drop-in replacement for glob lets you use promises or callbacks.

Prerequisites

  • When installed, uses glob@latest
  • Backwards compatible to glob@3.0.0
  • glob.Glob constructor is not promisified`

Installation

$ npm install --save universal-glob

Usage

const glob = require('universal-glob');

// use callbacks
glob(pattern, options, callback);

// use promises
glob(pattern, options).then(results => {
  // ...
});

// use sync
let results = glob.sync(pattern);

License

ISC © Buster Collings