Template Upload
This commit is contained in:
14
node_modules/is-redirect/index.js
generated
vendored
Normal file
14
node_modules/is-redirect/index.js
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
'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
Normal file
21
node_modules/is-redirect/license
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
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.
|
90
node_modules/is-redirect/package.json
generated
vendored
Normal file
90
node_modules/is-redirect/package.json
generated
vendored
Normal file
@ -0,0 +1,90 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"is-redirect@^1.0.0",
|
||||
"C:\\Users\\x2mjbyrn\\Source\\Repos\\Skeleton\\node_modules\\got"
|
||||
]
|
||||
],
|
||||
"_from": "is-redirect@>=1.0.0-0 <2.0.0-0",
|
||||
"_id": "is-redirect@1.0.0",
|
||||
"_inCache": true,
|
||||
"_location": "/is-redirect",
|
||||
"_nodeVersion": "0.12.4",
|
||||
"_npmUser": {
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"name": "sindresorhus"
|
||||
},
|
||||
"_npmVersion": "2.10.1",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"name": "is-redirect",
|
||||
"raw": "is-redirect@^1.0.0",
|
||||
"rawSpec": "^1.0.0",
|
||||
"scope": null,
|
||||
"spec": ">=1.0.0-0 <2.0.0-0",
|
||||
"type": "range"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/got"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz",
|
||||
"_shasum": "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24",
|
||||
"_shrinkwrap": null,
|
||||
"_spec": "is-redirect@^1.0.0",
|
||||
"_where": "C:\\Users\\x2mjbyrn\\Source\\Repos\\Skeleton\\node_modules\\got",
|
||||
"author": {
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"name": "Sindre Sorhus",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/is-redirect/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "Check if a number is a redirect HTTP status code",
|
||||
"devDependencies": {
|
||||
"ava": "0.0.4"
|
||||
},
|
||||
"directories": {},
|
||||
"dist": {
|
||||
"shasum": "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24",
|
||||
"tarball": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"gitHead": "53bc816ba54447a55676930138151feb0f917c18",
|
||||
"homepage": "https://github.com/sindresorhus/is-redirect",
|
||||
"installable": true,
|
||||
"keywords": [
|
||||
"check",
|
||||
"code",
|
||||
"codes",
|
||||
"detect",
|
||||
"http",
|
||||
"https",
|
||||
"is",
|
||||
"redirect",
|
||||
"status"
|
||||
],
|
||||
"license": "MIT",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "sindresorhus",
|
||||
"email": "sindresorhus@gmail.com"
|
||||
}
|
||||
],
|
||||
"name": "is-redirect",
|
||||
"optionalDependencies": {},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sindresorhus/is-redirect"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"version": "1.0.0"
|
||||
}
|
28
node_modules/is-redirect/readme.md
generated
vendored
Normal file
28
node_modules/is-redirect/readme.md
generated
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
# 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