fixed untracked files
This commit is contained in:
14
node_modules/is-redirect/index.js
generated
vendored
14
node_modules/is-redirect/index.js
generated
vendored
@ -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
21
node_modules/is-redirect/license
generated
vendored
@ -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.
|
67
node_modules/is-redirect/package.json
generated
vendored
67
node_modules/is-redirect/package.json
generated
vendored
@ -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
28
node_modules/is-redirect/readme.md
generated
vendored
@ -1,28 +0,0 @@
|
||||
# is-redirect [](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)
|
Reference in New Issue
Block a user