keqingrong / is-same-origin

Check if two URLs are same origin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

is-same-origin

npm version

Check if two URLs are same origin, for Node and the browser

Installation

npm install is-same-origin
// Using ES6 modules
import isSameOrigin from 'is-same-origin';

// Using CommonJS modules
const isSameOrigin = require('is-same-origin');

The CDN build is also available on unpkg:

Usage

const isSameOrigin = require('is-same-origin');

isSameOrigin('http://www.example.com/dir/page.html',
  'http://www.example.com/dir/page2.html');
// => true

isSameOrigin('http://www.example.com/dir/page.html',
  'http://en.example.com/dir/other.html');
// => false

License

MIT

About

Check if two URLs are same origin

License:MIT License


Languages

Language:JavaScript 100.0%