New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

matched

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

matched

Adds array support to node-glob, sync and async. Also supports tilde expansion (user home) and resolving to global npm modules.

0.3.1
Source
npm
Version published
Weekly downloads
161K
-1.64%
Maintainers
1
Weekly downloads
 
Created
Source

matched NPM version

Adds array support to node-glob, sync and async. Also supports tilde expansion (user home) and resolving to global npm modules.

TODO

  • async
  • sync
  • promise

Install

Install with npm

$ npm i matched --save

Usage

var glob = require('matched');

async

glob(['*.js'], function(err, files) {
  //=> ['utils.js', 'index.js']
});

sync

var files = glob.sync(['*.js']);
//=> ['utils.js', 'index.js']

options

Both sync and async take options as the second argument:

glob(['*.js'], {cwd: 'test'}, function(err, files) {
  //=> ['test.js']
});
  • is-glob: Returns true if the given string looks like a glob pattern or an extglob pattern.… more | homepage
  • look-up: Faster drop-in replacement for find-up and findup-sync. | homepage
  • micromatch: Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. Just… more | homepage

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Author

Jon Schlinkert

License

Copyright © 2015 Jon Schlinkert Released under the MIT license.

This file was generated by verb-cli on October 08, 2015.

Keywords

array

FAQs

Package last updated on 08 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts