1.1.1 • Published 8 years ago

ultra-glob v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
8 years ago

ultra-glob

Wrapper around glob for ease of use, negative patterns, array of globs and Promises.

usage

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

glob([
  './**/*.js',
  '!./node_modules/*',
]).then(function (files) {
  // files is an array of filenames.
})