3.0.2 • Published 5 years ago

aglob v3.0.2

Weekly downloads
894
License
MIT
Repository
github
Last release
5 years ago

aglob

Build Status npm Version JS Standard

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.

Links