aboutsummaryrefslogtreecommitdiff
path: root/node_modules/is-url
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/is-url')
-rw-r--r--node_modules/is-url/History.md25
-rw-r--r--node_modules/is-url/LICENSE-MIT19
-rw-r--r--node_modules/is-url/Readme.md19
-rw-r--r--node_modules/is-url/index.js47
-rw-r--r--node_modules/is-url/package.json13
-rw-r--r--node_modules/is-url/test/index.js149
6 files changed, 0 insertions, 272 deletions
diff --git a/node_modules/is-url/History.md b/node_modules/is-url/History.md
deleted file mode 100644
index 8b24e0222..000000000
--- a/node_modules/is-url/History.md
+++ /dev/null
@@ -1,25 +0,0 @@
-
-1.2.0 - November 25, 2014
--------------------------
-* add support for protocol relative urls
-
-1.1.0 - February 8, 2013
-------------------------
-* support any protocol
-* support paths on localhost
-
-1.0.0 - January 17, 2013
-------------------------
-* allow localhost to have a port
-
-0.1.0 - September 8, 2013
--------------------------
-* make regexp match more valid url types
-
-0.0.2 - August 2, 2013
-----------------------
-* remove loose matching
-
-0.0.1 - August 2, 2013
-----------------------
-:sparkles: \ No newline at end of file
diff --git a/node_modules/is-url/LICENSE-MIT b/node_modules/is-url/LICENSE-MIT
deleted file mode 100644
index fe5bb30fb..000000000
--- a/node_modules/is-url/LICENSE-MIT
+++ /dev/null
@@ -1,19 +0,0 @@
-MIT LICENSE
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
diff --git a/node_modules/is-url/Readme.md b/node_modules/is-url/Readme.md
deleted file mode 100644
index 20ed18103..000000000
--- a/node_modules/is-url/Readme.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# is-url
-
-Check whether a string is a URL.
-
-## Installation
-
-```sh
-npm install is-url
-```
-
-## API
-
-### `isUrl(string)`
-
-Returns a Boolean indicating whether `string` is a URL.
-
-## License
-
-MIT
diff --git a/node_modules/is-url/index.js b/node_modules/is-url/index.js
deleted file mode 100644
index 3ea3d20db..000000000
--- a/node_modules/is-url/index.js
+++ /dev/null
@@ -1,47 +0,0 @@
-
-/**
- * Expose `isUrl`.
- */
-
-module.exports = isUrl;
-
-/**
- * RegExps.
- * A URL must match #1 and then at least one of #2/#3.
- * Use two levels of REs to avoid REDOS.
- */
-
-var protocolAndDomainRE = /^(?:\w+:)?\/\/(\S+)$/;
-
-var localhostDomainRE = /^localhost[\:?\d]*(?:[^\:?\d]\S*)?$/
-var nonLocalhostDomainRE = /^[^\s\.]+\.\S{2,}$/;
-
-/**
- * Loosely validate a URL `string`.
- *
- * @param {String} string
- * @return {Boolean}
- */
-
-function isUrl(string){
- if (typeof string !== 'string') {
- return false;
- }
-
- var match = string.match(protocolAndDomainRE);
- if (!match) {
- return false;
- }
-
- var everythingAfterProtocol = match[1];
- if (!everythingAfterProtocol) {
- return false;
- }
-
- if (localhostDomainRE.test(everythingAfterProtocol) ||
- nonLocalhostDomainRE.test(everythingAfterProtocol)) {
- return true;
- }
-
- return false;
-}
diff --git a/node_modules/is-url/package.json b/node_modules/is-url/package.json
deleted file mode 100644
index 34b3ac118..000000000
--- a/node_modules/is-url/package.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "name": "is-url",
- "description": "Check whether a string is a URL.",
- "repository": "https://github.com/segmentio/is-url",
- "version": "1.2.4",
- "scripts": {
- "test": "mocha --reporter spec"
- },
- "license": "MIT",
- "devDependencies": {
- "mocha": "*"
- }
-}
diff --git a/node_modules/is-url/test/index.js b/node_modules/is-url/test/index.js
deleted file mode 100644
index 404e1b6f0..000000000
--- a/node_modules/is-url/test/index.js
+++ /dev/null
@@ -1,149 +0,0 @@
-
-try {
- var url = require('is-url');
-} catch (e) {
- var url = require('..');
-}
-
-var assert = require('assert');
-
-describe('is-url', function () {
- describe('valid', function () {
- it('http://google.com', function () {
- assert(url('http://google.com'));
- });
-
- it('https://google.com', function () {
- assert(url('https://google.com'));
- });
-
- it('ftp://google.com', function () {
- assert(url('ftp://google.com'));
- });
-
- it('http://www.google.com', function () {
- assert(url('http://www.google.com'));
- });
-
- it('http://google.com/something', function () {
- assert(url('http://google.com/something'));
- });
-
- it('http://google.com?q=query', function () {
- assert(url('http://google.com?q=query'));
- });
-
- it('http://google.com#hash', function () {
- assert(url('http://google.com#hash'));
- });
-
- it('http://google.com/something?q=query#hash', function () {
- assert(url('http://google.com/something?q=query#hash'));
- });
-
- it('http://google.co.uk', function () {
- assert(url('http://google.co.uk'));
- });
-
- it('http://www.google.co.uk', function () {
- assert(url('http://www.google.co.uk'));
- });
-
- it('http://google.cat', function () {
- assert(url('http://google.cat'));
- });
-
- it('https://d1f4470da51b49289906b3d6cbd65074@app.getsentry.com/13176', function () {
- assert(url('https://d1f4470da51b49289906b3d6cbd65074@app.getsentry.com/13176'));
- });
-
- it('http://0.0.0.0', function () {
- assert(url('http://0.0.0.0'));
- });
-
- it('http://localhost', function () {
- assert(url('http://localhost'));
- });
-
- it('postgres://u:p@example.com:5702/db', function () {
- assert(url('postgres://u:p@example.com:5702/db'));
- });
-
- it('redis://:123@174.129.42.52:13271', function () {
- assert(url('redis://:123@174.129.42.52:13271'));
- });
-
- it('mongodb://u:p@example.com:10064/db', function () {
- assert(url('mongodb://u:p@example.com:10064/db'));
- });
-
- it('ws://chat.example.com/games', function () {
- assert(url('ws://chat.example.com/games'));
- });
-
- it('wss://secure.example.com/biz', function () {
- assert(url('wss://secure.example.com/biz'));
- });
-
- it('http://localhost:4000', function () {
- assert(url('http://localhost:4000'));
- });
-
- it('http://localhost:342/a/path', function () {
- assert(url('http://localhost:342/a/path'));
- });
-
- it('//google.com', function () {
- assert(url('//google.com'));
- });
- });
-
- describe('invalid', function () {
- it('http://', function () {
- assert(!url('http://'));
- });
-
- it('http://google', function () {
- assert(!url('http://google'));
- });
-
- it('http://google.', function () {
- assert(!url('http://google.'));
- });
-
- it('google', function () {
- assert(!url('google'));
- });
-
- it('google.com', function () {
- assert(!url('google.com'));
- });
-
- it('empty', function () {
- assert(!url(''));
- });
-
- it('undef', function () {
- assert(!url(undefined));
- });
-
- it('object', function () {
- assert(!url({}));
- });
-
- it('re', function () {
- assert(!url(/abc/));
- });
- });
-
- describe('redos', function () {
- it('redos exploit', function () {
- // Invalid. This should be discovered in under 1 second.
- var attackString = 'a://localhost' + '9'.repeat(100000) + '\t';
- var before = process.hrtime();
- assert(!url(attackString), 'attackString was valid');
- var elapsed = process.hrtime(before);
- assert(elapsed[0] < 1, 'attackString took ' + elapsed[0] + ' > 1 seconds');
- });
- });
-});