fixed untracked files

This commit is contained in:
Luca Schwan
2020-03-21 03:48:59 +01:00
parent 7462ec7ce2
commit 5a63d36fa4
1066 changed files with 0 additions and 138320 deletions

14
node_modules/is-redirect/index.js generated vendored
View File

@ -1,14 +0,0 @@
'use strict';
module.exports = function (x) {
if (typeof x !== 'number') {
throw new TypeError('Expected a number');
}
return x === 300 ||
x === 301 ||
x === 302 ||
x === 303 ||
x === 305 ||
x === 307 ||
x === 308;
};

21
node_modules/is-redirect/license generated vendored
View File

@ -1,21 +0,0 @@
The MIT License (MIT)
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
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.

View File

@ -1,67 +0,0 @@
{
"_from": "is-redirect@^1.0.0",
"_id": "is-redirect@1.0.0",
"_inBundle": false,
"_integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=",
"_location": "/is-redirect",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "is-redirect@^1.0.0",
"name": "is-redirect",
"escapedName": "is-redirect",
"rawSpec": "^1.0.0",
"saveSpec": null,
"fetchSpec": "^1.0.0"
},
"_requiredBy": [
"/got"
],
"_resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz",
"_shasum": "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24",
"_spec": "is-redirect@^1.0.0",
"_where": "/Users/Luca_Schwan/Desktop/DSABot/node_modules/got",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/is-redirect/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Check if a number is a redirect HTTP status code",
"devDependencies": {
"ava": "0.0.4"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/sindresorhus/is-redirect#readme",
"keywords": [
"redirect",
"http",
"https",
"status",
"code",
"codes",
"is",
"check",
"detect"
],
"license": "MIT",
"name": "is-redirect",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/is-redirect.git"
},
"scripts": {
"test": "node test.js"
},
"version": "1.0.0"
}

28
node_modules/is-redirect/readme.md generated vendored
View File

@ -1,28 +0,0 @@
# is-redirect [![Build Status](https://travis-ci.org/sindresorhus/is-redirect.svg?branch=master)](https://travis-ci.org/sindresorhus/is-redirect)
> Check if a number is a [redirect HTTP status code](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#3xx_Redirection)
## Install
```
$ npm install --save is-redirect
```
## Usage
```js
var isRedirect = require('is-redirect');
isRedirect(302);
//=> true
isRedirect(200);
//=> false
```
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)