Socket
Socket
Sign inDemoInstall

match-domain

Package Overview
Dependencies
2
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    match-domain

![NPM](https://img.shields.io/npm/l/url-matcher)


Version published
Maintainers
1
Created

Readme

Source

NPM

Url Matcher

A simple library to match url domains.

Usage

import { urlMatcher } from 'url-matcher';

function matchExample() {
    const toMatch = 'www.fetcher.ai';
    const domain = 'fetcher.ai';

    if (urlMatcher(domain, toMatch)) {
        // do things...
    }
}

API

urlMatcher(domainA: string, domainB: string): boolean

Return: Boolean depending on the result is true or false.

Params

Field NameTypeDefaultDescription
domainAstringmandatoryMandatory domain A to match
domainBstringmandatoryMandatory domain B to match with A

Tests

To execute jest tests:

pnpm test

Maintain

This package use TSdx. Please check documentation to update this package.

FAQs

Last updated on 02 Jun 2022

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc