Socket
Socket
Sign inDemoInstall

pathname-match

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pathname-match

Strip a url to only match the `pathname`.


Version published
Maintainers
1
Install size
4.62 kB
Created

Readme

Source

pathname-match

NPM version build status Test coverage Downloads

Strip a url to only match the pathname. Weighs only 200 bytes gzipped.

Installation

$ npm install pathname-match

Usage

const pathMatch = require('pathname-match')
const wayfarer  = require('wayfarer')

const router = wayfarer('/')

router.on('/', => console.log('home'))
router.on('/derp', => console.log('derp'))
router.on('/404', => console.log('not found'))

router.match(pathMatch('/derp/#foo?bin=baz'))
// => '/derp'

Why?

It's meant to feed the output to a router such as wayfarer, and not having to worry about hashes in the url. This used to be part of wayfarer, but has been stripped out to make the api even smaller.

See Also

License

MIT

Keywords

FAQs

Last updated on 28 Aug 2016

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