first commit

This commit is contained in:
s.golasch
2023-08-01 13:49:46 +02:00
commit 1fc239fd54
20238 changed files with 3112246 additions and 0 deletions

3
build/node_modules/is-url/.npmignore generated vendored Normal file
View File

@@ -0,0 +1,3 @@
node_modules
components
build

25
build/node_modules/is-url/History.md generated vendored Normal file
View File

@@ -0,0 +1,25 @@
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:

19
build/node_modules/is-url/LICENSE-MIT generated vendored Normal file
View File

@@ -0,0 +1,19 @@
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.

18
build/node_modules/is-url/Makefile generated vendored Normal file
View File

@@ -0,0 +1,18 @@
build: components index.js
@component build --dev
clean:
@rm -fr build components node_modules
components: component.json
@component install --dev
node_modules: package.json
@npm install
test: node_modules build
@./node_modules/.bin/mocha --reporter spec
@component test phantom
.PHONY: clean test

22
build/node_modules/is-url/Readme.md generated vendored Normal file
View File

@@ -0,0 +1,22 @@
# is-url
Check whether a string is a URL.
## Installation
```
$ component install segmentio/is-url
```
```
$ npm install is-url
```
## API
### isUrl(string)
Checks whether `string` is a URL.
## License
MIT

19
build/node_modules/is-url/component.json generated vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "is-url",
"repo": "segmentio/is-url",
"version": "1.2.0",
"license": "MIT",
"description": "Check whether a string is a URL.",
"keywords": [
"url",
"regexp",
"regex",
"validate"
],
"scripts": [
"index.js"
],
"development": {
"component/assert": "*"
}
}

23
build/node_modules/is-url/index.js generated vendored Normal file
View File

@@ -0,0 +1,23 @@
/**
* Expose `isUrl`.
*/
module.exports = isUrl;
/**
* Matcher.
*/
var matcher = /^(?:\w+:)?\/\/([^\s\.]+\.\S{2}|localhost[\:?\d]*)\S*$/;
/**
* Loosely validate a URL `string`.
*
* @param {String} string
* @return {Boolean}
*/
function isUrl(string){
return matcher.test(string);
}

48
build/node_modules/is-url/package.json generated vendored Normal file
View File

@@ -0,0 +1,48 @@
{
"_args": [
[
"is-url@1.2.2",
"/Users/asciidisco/Desktop/asciidisco.com/build"
]
],
"_from": "is-url@1.2.2",
"_id": "is-url@1.2.2",
"_inBundle": false,
"_integrity": "sha1-SYkFpZO/R8wtnn9zg3K792lsfyY=",
"_location": "/is-url",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "is-url@1.2.2",
"name": "is-url",
"escapedName": "is-url",
"rawSpec": "1.2.2",
"saveSpec": null,
"fetchSpec": "1.2.2"
},
"_requiredBy": [
"/download"
],
"_resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.2.tgz",
"_spec": "1.2.2",
"_where": "/Users/asciidisco/Desktop/asciidisco.com/build",
"bugs": {
"url": "https://github.com/segmentio/is-url/issues"
},
"description": "Check whether a string is a URL.",
"devDependencies": {
"mocha": "*"
},
"homepage": "https://github.com/segmentio/is-url#readme",
"license": "MIT",
"name": "is-url",
"repository": {
"type": "git",
"url": "git+https://github.com/segmentio/is-url.git"
},
"scripts": {
"test": "make test"
},
"version": "1.2.2"
}

122
build/node_modules/is-url/test/index.js generated vendored Normal file
View File

@@ -0,0 +1,122 @@
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'));
});
});
});