@alexbinary/glob

1.0.1Β β€’Β PublicΒ β€’Β Published

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

Dependencies (2)

Dev Dependencies (4)

Package Sidebar

Install

npm i @alexbinary/glob

Weekly Downloads

2

Version

1.0.1

License

MIT

Last publish

Collaborators

  • alexbinary