forked from mirror/Riven
1
0
Fork 0
Riven/riven/srcgen/node_modules/glob-promise
Mingwei Samuel 74eb5fa045 Update example proxy for v2, use workspaces.
- `example/proxy` is new folder for `example_proxy`.
- `riven` is new folder for the main riven lib.
- Updated metadata to be an array and include HTTP method.
2021-09-09 14:31:39 -07:00
..
lib Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00
LICENSE Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00
README.md Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00
package.json Update example proxy for v2, use workspaces. 2021-09-09 14:31:39 -07:00

README.md

glob-promise version License Build Status Downloads Coverage Status

Promise version of glob

Match files using the patterns the shell uses, like stars and stuff.

Install

# using yarn
$ yarn add glob-promise

# using npm
$ npm install --production --save glob-promise
NOTE:

glob is set as a peerDependency in package.json

  • npm <= 2 will automatically install peerDependencies if they are not explicitly depended upon higher in the dependency tree.
  • npm >= 3 will no longer automatically install peerDependencies.

You will need to manually add glob as a dependency to your project for glob-promise to work.

API

glob(pattern [, options])

Alias for glob.promise

glob.promise(pattern [, options])

pattern: String (glob pattern) options: Object or String Return: Object (Promise)

When it finishes, it will be fulfilled with an Array of filenames as its first argument.

When it fails to read the files, it will be rejected with an error as its first argument.

glob('**/*')
  .then(function(contents) {
    contents; //=> ['lorem', 'ipsum', 'dolor']
  });

glob('{foo,bar.baz}.txt', { nobrace: true })
  .then(function(contents) {
    contents; //=> []
  });

glob.glob(pattern [, options], cb)

see glob

glob.sync(pattern [, options])

see glob.sync()

glob.hasMagic(pattern, [options])

see glob.hasMagic()

Class: glob.Glob

see Glob

options

The option object will be directly passed to glob.


License: ISC • Copyright: ahmadnassri.com • Github: @ahmadnassri • Twitter: @ahmadnassri