aglob
v3.0.2
Published
Async glob module.
Downloads
5,618
Readme
aglob
Async glob module.
Installation
$ npm install aglob --save
Usage
#!/usr/bin/env/node
'use strict'
const aglob = require('aglob')
aglob([
'lib/*.js',
'doc/**/.js'
], {
cwd: process.cwd(),
ignore: []
}).then((filenames) => {
console.log(filenames)
})
License
This software is released under the MIT License.