1.0.1 • Published 7 years ago

@alexbinary/glob v1.0.1

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

glob

Simple glob with promise support 🎉

npm GitHub release Build Status dependencies Status devDependencies Status

Based on glob by isaacs

Uses @alexbinary/promisify by alexbinary

Install

Install with npm or yarn :

$ npm install @alexbinary/glob
# or
$ yarn add @alexbinary/glob

Usage

let glob = require('@alexbinary/glob')

glob('/foo/**').then((filepaths) => {
  console.log('found files: ' + filepaths)
})

Documentation

let glob = require('@alexbinary/glob')

glob(pattern)

Returns files that match pattern.

This method supports both Promise and node callback style, and resolves with an array of string containing the absoute file paths to all matched files.

glob.sync(pattern)

Synchronous version.

Licence

MIT