You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
427 B
14 lines
427 B
var Url = require('./Url'); |
|
exports = function(url1, url2) { |
|
url1 = new Url(url1); |
|
url2 = new Url(url2); |
|
url1.port = url1.port | 0 || (url1.protocol === 'https' ? 443 : 80); |
|
url2.port = url2.port | 0 || (url2.protocol === 'https' ? 443 : 80); |
|
return ( |
|
url1.protocol === url2.protocol && |
|
url1.hostname === url2.hostname && |
|
url1.port === url2.port |
|
); |
|
}; |
|
|
|
module.exports = exports;
|
|
|