Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bluelovers/node-match-chrome

A module for testing URLs against match chrome patterns
https://github.com/bluelovers/node-match-chrome

Last synced: 3 days ago
JSON representation

A module for testing URLs against match chrome patterns

Awesome Lists containing this project

README

        

# match-chrome

> A module for testing URLs against match chrome patterns

## options

```javascript
defaultOptions = {
skipHash: true,
skipQuery: false,

scheme: [
'http',
'https',
'file',
],

returnValue: false,
}
```

## use

import matchChrome from 'match-chrome';

matchChrome('http://127.0.0.1', 'http://127.0.0.1/*') // ok

## demo

see [test](test/)