url-match-patterns
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/url-match-patterns package

0.2.0 • Public • Published

url-match-patterns

A node module for testing URLs against match patterns, as defined by Google and Mozilla.

Example

import match from 'url-match-patterns';
 
// check that a url matches
match('*://*/', 'https://www.example.com'); // true
 
// or build a reusable function
const matches = match('*://*/');
matches('https://www.example.com'); // true
 

API

match(pattern, url) -> Boolean

Compares a pattern against a URL. Returns true if the pattern matches or false if it doesn't. Will throw an AssertionError if your pattern is invalid.

match(pattern) -> Function

Create a reusable match function for a pattern. This will be faster since it only has to initialize once. Will throw an AssertionError if your pattern is invalid.

Package Sidebar

Install

npm i url-match-patterns

Weekly Downloads

2,337

Version

0.2.0

License

MIT

Last publish

Collaborators

  • nickclaw