This commit is contained in:
Pipi Chen
2020-05-07 01:02:44 +08:00
commit b8a3516cd6
2147 changed files with 184854 additions and 0 deletions

21
node_modules/@types/color-name/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
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

16
node_modules/@types/color-name/README.md generated vendored Normal file
View File

@@ -0,0 +1,16 @@
# Installation
> `npm install --save @types/color-name`
# Summary
This package contains type definitions for color-name ( https://github.com/colorjs/color-name ).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/color-name
Additional Details
* Last updated: Wed, 13 Feb 2019 16:16:48 GMT
* Dependencies: none
* Global values: none
# Credits
These definitions were written by Junyoung Clare Jang <https://github.com/Ailrun>.

161
node_modules/@types/color-name/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,161 @@
// Type definitions for color-name 1.1
// Project: https://github.com/colorjs/color-name
// Definitions by: Junyoung Clare Jang <https://github.com/Ailrun>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* Tuple of Red, Green, and Blue
* @example
* // Red = 55, Green = 70, Blue = 0
* const rgb: RGB = [55, 70, 0];
*/
export type RGB = [number, number, number];
export const aliceblue: RGB;
export const antiquewhite: RGB;
export const aqua: RGB;
export const aquamarine: RGB;
export const azure: RGB;
export const beige: RGB;
export const bisque: RGB;
export const black: RGB;
export const blanchedalmond: RGB;
export const blue: RGB;
export const blueviolet: RGB;
export const brown: RGB;
export const burlywood: RGB;
export const cadetblue: RGB;
export const chartreuse: RGB;
export const chocolate: RGB;
export const coral: RGB;
export const cornflowerblue: RGB;
export const cornsilk: RGB;
export const crimson: RGB;
export const cyan: RGB;
export const darkblue: RGB;
export const darkcyan: RGB;
export const darkgoldenrod: RGB;
export const darkgray: RGB;
export const darkgreen: RGB;
export const darkgrey: RGB;
export const darkkhaki: RGB;
export const darkmagenta: RGB;
export const darkolivegreen: RGB;
export const darkorange: RGB;
export const darkorchid: RGB;
export const darkred: RGB;
export const darksalmon: RGB;
export const darkseagreen: RGB;
export const darkslateblue: RGB;
export const darkslategray: RGB;
export const darkslategrey: RGB;
export const darkturquoise: RGB;
export const darkviolet: RGB;
export const deeppink: RGB;
export const deepskyblue: RGB;
export const dimgray: RGB;
export const dimgrey: RGB;
export const dodgerblue: RGB;
export const firebrick: RGB;
export const floralwhite: RGB;
export const forestgreen: RGB;
export const fuchsia: RGB;
export const gainsboro: RGB;
export const ghostwhite: RGB;
export const gold: RGB;
export const goldenrod: RGB;
export const gray: RGB;
export const green: RGB;
export const greenyellow: RGB;
export const grey: RGB;
export const honeydew: RGB;
export const hotpink: RGB;
export const indianred: RGB;
export const indigo: RGB;
export const ivory: RGB;
export const khaki: RGB;
export const lavender: RGB;
export const lavenderblush: RGB;
export const lawngreen: RGB;
export const lemonchiffon: RGB;
export const lightblue: RGB;
export const lightcoral: RGB;
export const lightcyan: RGB;
export const lightgoldenrodyellow: RGB;
export const lightgray: RGB;
export const lightgreen: RGB;
export const lightgrey: RGB;
export const lightpink: RGB;
export const lightsalmon: RGB;
export const lightseagreen: RGB;
export const lightskyblue: RGB;
export const lightslategray: RGB;
export const lightslategrey: RGB;
export const lightsteelblue: RGB;
export const lightyellow: RGB;
export const lime: RGB;
export const limegreen: RGB;
export const linen: RGB;
export const magenta: RGB;
export const maroon: RGB;
export const mediumaquamarine: RGB;
export const mediumblue: RGB;
export const mediumorchid: RGB;
export const mediumpurple: RGB;
export const mediumseagreen: RGB;
export const mediumslateblue: RGB;
export const mediumspringgreen: RGB;
export const mediumturquoise: RGB;
export const mediumvioletred: RGB;
export const midnightblue: RGB;
export const mintcream: RGB;
export const mistyrose: RGB;
export const moccasin: RGB;
export const navajowhite: RGB;
export const navy: RGB;
export const oldlace: RGB;
export const olive: RGB;
export const olivedrab: RGB;
export const orange: RGB;
export const orangered: RGB;
export const orchid: RGB;
export const palegoldenrod: RGB;
export const palegreen: RGB;
export const paleturquoise: RGB;
export const palevioletred: RGB;
export const papayawhip: RGB;
export const peachpuff: RGB;
export const peru: RGB;
export const pink: RGB;
export const plum: RGB;
export const powderblue: RGB;
export const purple: RGB;
export const rebeccapurple: RGB;
export const red: RGB;
export const rosybrown: RGB;
export const royalblue: RGB;
export const saddlebrown: RGB;
export const salmon: RGB;
export const sandybrown: RGB;
export const seagreen: RGB;
export const seashell: RGB;
export const sienna: RGB;
export const silver: RGB;
export const skyblue: RGB;
export const slateblue: RGB;
export const slategray: RGB;
export const slategrey: RGB;
export const snow: RGB;
export const springgreen: RGB;
export const steelblue: RGB;
export const tan: RGB;
export const teal: RGB;
export const thistle: RGB;
export const tomato: RGB;
export const turquoise: RGB;
export const violet: RGB;
export const wheat: RGB;
export const white: RGB;
export const whitesmoke: RGB;
export const yellow: RGB;
export const yellowgreen: RGB;

52
node_modules/@types/color-name/package.json generated vendored Normal file
View File

@@ -0,0 +1,52 @@
{
"_from": "@types/color-name@^1.1.1",
"_id": "@types/color-name@1.1.1",
"_inBundle": false,
"_integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
"_location": "/@types/color-name",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "@types/color-name@^1.1.1",
"name": "@types/color-name",
"escapedName": "@types%2fcolor-name",
"scope": "@types",
"rawSpec": "^1.1.1",
"saveSpec": null,
"fetchSpec": "^1.1.1"
},
"_requiredBy": [
"/chalk/ansi-styles"
],
"_resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
"_shasum": "1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0",
"_spec": "@types/color-name@^1.1.1",
"_where": "C:\\Users\\Shaun\\.CocosCreator\\packages\\ccc-obfuscated-code\\node_modules\\chalk\\node_modules\\ansi-styles",
"bugs": {
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "Junyoung Clare Jang",
"url": "https://github.com/Ailrun"
}
],
"dependencies": {},
"deprecated": false,
"description": "TypeScript definitions for color-name",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme",
"license": "MIT",
"main": "",
"name": "@types/color-name",
"repository": {
"type": "git",
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git"
},
"scripts": {},
"typeScriptVersion": "2.0",
"types": "index",
"typesPublisherContentHash": "e22c6881e2dcf766e32142cbb82d9acf9c08258bdf0da8e76c8a448d1be44ac7",
"version": "1.1.1"
}

21
node_modules/@types/minimatch/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
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

16
node_modules/@types/minimatch/README.md generated vendored Normal file
View File

@@ -0,0 +1,16 @@
# Installation
> `npm install --save @types/minimatch`
# Summary
This package contains type definitions for Minimatch (https://github.com/isaacs/minimatch).
# Details
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/minimatch
Additional Details
* Last updated: Thu, 04 Jan 2018 23:26:01 GMT
* Dependencies: none
* Global values: none
# Credits
These definitions were written by vvakame <https://github.com/vvakame>, Shant Marouti <https://github.com/shantmarouti>.

214
node_modules/@types/minimatch/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,214 @@
// Type definitions for Minimatch 3.0
// Project: https://github.com/isaacs/minimatch
// Definitions by: vvakame <https://github.com/vvakame>
// Shant Marouti <https://github.com/shantmarouti>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* Tests a path against the pattern using the options.
*/
declare function M(target: string, pattern: string, options?: M.IOptions): boolean;
declare namespace M {
/**
* Match against the list of files, in the style of fnmatch or glob.
* If nothing is matched, and options.nonull is set,
* then return a list containing the pattern itself.
*/
function match(list: ReadonlyArray<string>, pattern: string, options?: IOptions): string[];
/**
* Returns a function that tests its supplied argument, suitable for use with Array.filter
*/
function filter(pattern: string, options?: IOptions): (element: string, indexed: number, array: ReadonlyArray<string>) => boolean;
/**
* Make a regular expression object from the pattern.
*/
function makeRe(pattern: string, options?: IOptions): RegExp;
let Minimatch: IMinimatchStatic;
interface IOptions {
/**
* Dump a ton of stuff to stderr.
*
* @default false
*/
debug?: boolean;
/**
* Do not expand {a,b} and {1..3} brace sets.
*
* @default false
*/
nobrace?: boolean;
/**
* Disable ** matching against multiple folder names.
*
* @default false
*/
noglobstar?: boolean;
/**
* Allow patterns to match filenames starting with a period,
* even if the pattern does not explicitly have a period in that spot.
*
* @default false
*/
dot?: boolean;
/**
* Disable "extglob" style patterns like +(a|b).
*
* @default false
*/
noext?: boolean;
/**
* Perform a case-insensitive match.
*
* @default false
*/
nocase?: boolean;
/**
* When a match is not found by minimatch.match,
* return a list containing the pattern itself if this option is set.
* Otherwise, an empty list is returned if there are no matches.
*
* @default false
*/
nonull?: boolean;
/**
* If set, then patterns without slashes will be matched against
* the basename of the path if it contains slashes.
*
* @default false
*/
matchBase?: boolean;
/**
* Suppress the behavior of treating #
* at the start of a pattern as a comment.
*
* @default false
*/
nocomment?: boolean;
/**
* Suppress the behavior of treating a leading ! character as negation.
*
* @default false
*/
nonegate?: boolean;
/**
* Returns from negate expressions the same as if they were not negated.
* (Ie, true on a hit, false on a miss.)
*
* @default false
*/
flipNegate?: boolean;
}
interface IMinimatchStatic {
new(pattern: string, options?: IOptions): IMinimatch;
prototype: IMinimatch;
}
interface IMinimatch {
/**
* The original pattern the minimatch object represents.
*/
pattern: string;
/**
* The options supplied to the constructor.
*/
options: IOptions;
/**
* A 2-dimensional array of regexp or string expressions.
*/
set: any[][]; // (RegExp | string)[][]
/**
* A single regular expression expressing the entire pattern.
* Created by the makeRe method.
*/
regexp: RegExp;
/**
* True if the pattern is negated.
*/
negate: boolean;
/**
* True if the pattern is a comment.
*/
comment: boolean;
/**
* True if the pattern is ""
*/
empty: boolean;
/**
* Generate the regexp member if necessary, and return it.
* Will return false if the pattern is invalid.
*/
makeRe(): RegExp; // regexp or boolean
/**
* Return true if the filename matches the pattern, or false otherwise.
*/
match(fname: string): boolean;
/**
* Take a /-split filename, and match it against a single row in the regExpSet.
* This method is mainly for internal use, but is exposed so that it can be used
* by a glob-walker that needs to avoid excessive filesystem calls.
*/
matchOne(files: string[], pattern: string[], partial: boolean): boolean;
/**
* Deprecated. For internal use.
*
* @private
*/
debug(): void;
/**
* Deprecated. For internal use.
*
* @private
*/
make(): void;
/**
* Deprecated. For internal use.
*
* @private
*/
parseNegate(): void;
/**
* Deprecated. For internal use.
*
* @private
*/
braceExpand(pattern: string, options: IOptions): void;
/**
* Deprecated. For internal use.
*
* @private
*/
parse(pattern: string, isSub?: boolean): void;
}
}
export = M;

55
node_modules/@types/minimatch/package.json generated vendored Normal file
View File

@@ -0,0 +1,55 @@
{
"_from": "@types/minimatch@^3.0.3",
"_id": "@types/minimatch@3.0.3",
"_inBundle": false,
"_integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==",
"_location": "/@types/minimatch",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "@types/minimatch@^3.0.3",
"name": "@types/minimatch",
"escapedName": "@types%2fminimatch",
"scope": "@types",
"rawSpec": "^3.0.3",
"saveSpec": null,
"fetchSpec": "^3.0.3"
},
"_requiredBy": [
"/multimatch"
],
"_resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz",
"_shasum": "3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d",
"_spec": "@types/minimatch@^3.0.3",
"_where": "C:\\Users\\Shaun\\.CocosCreator\\packages\\ccc-obfuscated-code\\node_modules\\multimatch",
"bugs": {
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "vvakame",
"url": "https://github.com/vvakame"
},
{
"name": "Shant Marouti",
"url": "https://github.com/shantmarouti"
}
],
"dependencies": {},
"deprecated": false,
"description": "TypeScript definitions for Minimatch",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme",
"license": "MIT",
"main": "",
"name": "@types/minimatch",
"repository": {
"type": "git",
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git"
},
"scripts": {},
"typeScriptVersion": "2.0",
"typesPublisherContentHash": "e768e36348874adcc93ac67e9c3c7b5fcbd39079c0610ec16e410b8f851308d1",
"version": "3.0.3"
}

21
node_modules/@types/validator/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
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

16
node_modules/@types/validator/README.md generated vendored Normal file
View File

@@ -0,0 +1,16 @@
# Installation
> `npm install --save @types/validator`
# Summary
This package contains type definitions for validator.js (https://github.com/validatorjs/validator.js).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/validator.
### Additional Details
* Last updated: Tue, 07 Apr 2020 20:54:46 GMT
* Dependencies: none
* Global values: none
# Credits
These definitions were written by [tgfjt](https://github.com/tgfjt), [Ilya Mochalov](https://github.com/chrootsu), [Ayman Nedjmeddine](https://github.com/IOAyman), [Louay Alakkad](https://github.com/louy), [Kacper Polak](https://github.com/kacepe), [Bonggyun Lee](https://github.com/deptno), [Naoto Yokoyama](https://github.com/builtinnya), [Philipp Katz](https://github.com/qqilihq), [Jace Warren](https://github.com/keatz55), [Munif Tanjim](https://github.com/MunifTanjim), and [Vlad Poluch](https://github.com/vlapo).

1304
node_modules/@types/validator/index.d.ts generated vendored Normal file

File diff suppressed because it is too large Load Diff

2
node_modules/@types/validator/lib/blacklist.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.blacklist;

2
node_modules/@types/validator/lib/contains.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.contains;

2
node_modules/@types/validator/lib/equals.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.equals;

2
node_modules/@types/validator/lib/escape.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.escape;

2
node_modules/@types/validator/lib/isAfter.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isAfter;

3
node_modules/@types/validator/lib/isAlpha.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type AlphaLocale = validator.AlphaLocale;
export default validator.isAlpha;

View File

@@ -0,0 +1,3 @@
import validator from '../';
export type AlphanumericLocale = validator.AlphanumericLocale;
export default validator.isAlphanumeric;

2
node_modules/@types/validator/lib/isAscii.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isAscii;

2
node_modules/@types/validator/lib/isBIC.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isBIC;

2
node_modules/@types/validator/lib/isBase32.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isBase32;

2
node_modules/@types/validator/lib/isBase64.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isBase64;

2
node_modules/@types/validator/lib/isBefore.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isBefore;

2
node_modules/@types/validator/lib/isBoolean.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isBoolean;

2
node_modules/@types/validator/lib/isBtcAddress.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isBtcAddress;

3
node_modules/@types/validator/lib/isByteLength.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IsByteLengthOptions = validator.IsByteLengthOptions;
export default validator.isByteLength;

2
node_modules/@types/validator/lib/isCreditCard.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isCreditCard;

3
node_modules/@types/validator/lib/isCurrency.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IsCurrencyOptions = validator.IsCurrencyOptions;
export default validator.isCurrency;

2
node_modules/@types/validator/lib/isDataURI.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isDataURI;

4
node_modules/@types/validator/lib/isDecimal.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import validator from '../';
export type IsDecimalOptions = validator.IsDecimalOptions;
export type DecimalLocale = validator.DecimalLocale;
export default validator.isDecimal;

2
node_modules/@types/validator/lib/isDivisibleBy.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isDivisibleBy;

2
node_modules/@types/validator/lib/isEAN.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isEAN;

3
node_modules/@types/validator/lib/isEmail.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IsEmailOptions = validator.IsEmailOptions;
export default validator.isEmail;

3
node_modules/@types/validator/lib/isEmpty.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IsEmptyOptions = validator.IsEmptyOptions;
export default validator.isEmpty;

View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isEthereumAddress;

3
node_modules/@types/validator/lib/isFQDN.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IsFQDNOptions = validator.IsFQDNOptions;
export default validator.isFQDN;

4
node_modules/@types/validator/lib/isFloat.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import validator from '../';
export type FloatLocale = validator.FloatLocale;
export type IsFloatOptions = validator.IsFloatOptions;
export default validator.isFloat;

2
node_modules/@types/validator/lib/isFullWidth.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isFullWidth;

2
node_modules/@types/validator/lib/isHSL.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isHSL;

2
node_modules/@types/validator/lib/isHalfWidth.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isHalfWidth;

3
node_modules/@types/validator/lib/isHash.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type HashAlgorithm = validator.HashAlgorithm;
export default validator.isHash;

2
node_modules/@types/validator/lib/isHexColor.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isHexColor;

2
node_modules/@types/validator/lib/isHexadecimal.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isHexadecimal;

2
node_modules/@types/validator/lib/isIBAN.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isIBAN;

3
node_modules/@types/validator/lib/isIP.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IPVersion = validator.IPVersion;
export default validator.isIP;

2
node_modules/@types/validator/lib/isIPRange.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isIPRange;

3
node_modules/@types/validator/lib/isISBN.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type ISBNVersion = validator.ISBNVersion;
export default validator.isISBN;

2
node_modules/@types/validator/lib/isISIN.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isISIN;

View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isISO31661Alpha2;

View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isISO31661Alpha3;

3
node_modules/@types/validator/lib/isISO8601.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IsISO8601Options = validator.IsISO8601Options;
export default validator.isISO8601;

2
node_modules/@types/validator/lib/isISRC.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isISRC;

3
node_modules/@types/validator/lib/isISSN.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IsISSNOptions = validator.IsISSNOptions;
export default validator.isISSN;

View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IdentityCardLocale = validator.IdentityCardLocale;
export default validator.isIdentityCard;

2
node_modules/@types/validator/lib/isIn.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isIn;

3
node_modules/@types/validator/lib/isInt.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IsIntOptions = validator.IsIntOptions;
export default validator.isInt;

2
node_modules/@types/validator/lib/isJSON.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isJSON;

2
node_modules/@types/validator/lib/isJWT.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isJWT;

2
node_modules/@types/validator/lib/isLatLong.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isLatLong;

3
node_modules/@types/validator/lib/isLength.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IsLengthOptions = validator.IsLengthOptions;
export default validator.isLength;

2
node_modules/@types/validator/lib/isLocale.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isLocale;

2
node_modules/@types/validator/lib/isLowercase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isLowercase;

3
node_modules/@types/validator/lib/isMACAddress.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IsMACAddressOptions = validator.IsMACAddressOptions;
export default validator.isMACAddress;

2
node_modules/@types/validator/lib/isMD5.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isMD5;

2
node_modules/@types/validator/lib/isMagnetURI.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isMagnetURI;

2
node_modules/@types/validator/lib/isMimeType.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isMimeType;

4
node_modules/@types/validator/lib/isMobilePhone.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import validator from '../';
export type MobilePhoneLocale = validator.MobilePhoneLocale;
export type IsMobilePhoneOptions = validator.IsMobilePhoneOptions;
export default validator.isMobilePhone;

2
node_modules/@types/validator/lib/isMongoId.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isMongoId;

2
node_modules/@types/validator/lib/isMultibyte.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isMultibyte;

3
node_modules/@types/validator/lib/isNumeric.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IsNumericOptions = validator.IsNumericOptions;
export default validator.isNumeric;

2
node_modules/@types/validator/lib/isOctal.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isOctal;

View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isPassportNumber;

2
node_modules/@types/validator/lib/isPort.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isPort;

3
node_modules/@types/validator/lib/isPostalCode.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type PostalCodeLocale = validator.PostalCodeLocale;
export default validator.isPostalCode;

2
node_modules/@types/validator/lib/isRFC3339.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isRFC3339;

2
node_modules/@types/validator/lib/isRgbColor.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isRgbColor;

2
node_modules/@types/validator/lib/isSemVer.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isSemVer;

2
node_modules/@types/validator/lib/isSlug.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isSlug;

View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isSurrogatePair;

3
node_modules/@types/validator/lib/isURL.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type IsURLOptions = validator.IsURLOptions;
export default validator.isURL;

3
node_modules/@types/validator/lib/isUUID.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import validator from '../';
export type UUIDVersion = validator.UUIDVersion;
export default validator.isUUID;

2
node_modules/@types/validator/lib/isUppercase.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isUppercase;

View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isVariableWidth;

2
node_modules/@types/validator/lib/isWhitelisted.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.isWhitelisted;

2
node_modules/@types/validator/lib/ltrim.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.ltrim;

2
node_modules/@types/validator/lib/matches.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.matches;

View File

@@ -0,0 +1,3 @@
import validator from '../';
export type NormalizeEmailOptions = validator.NormalizeEmailOptions;
export default validator.normalizeEmail;

2
node_modules/@types/validator/lib/rtrim.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.rtrim;

2
node_modules/@types/validator/lib/stripLow.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.stripLow;

2
node_modules/@types/validator/lib/toBoolean.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.toBoolean;

2
node_modules/@types/validator/lib/toDate.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.toDate;

2
node_modules/@types/validator/lib/toFloat.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.toFloat;

2
node_modules/@types/validator/lib/toInt.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.toInt;

2
node_modules/@types/validator/lib/trim.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.trim;

2
node_modules/@types/validator/lib/unescape.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.unescape;

2
node_modules/@types/validator/lib/whitelist.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import validator from '../';
export default validator.whitelist;

93
node_modules/@types/validator/package.json generated vendored Normal file
View File

@@ -0,0 +1,93 @@
{
"_from": "@types/validator@13.0.0",
"_id": "@types/validator@13.0.0",
"_inBundle": false,
"_integrity": "sha512-WAy5txG7aFX8Vw3sloEKp5p/t/Xt8jD3GRD9DacnFv6Vo8ubudAsRTXgxpQwU0mpzY/H8U4db3roDuCMjShBmw==",
"_location": "/@types/validator",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "@types/validator@13.0.0",
"name": "@types/validator",
"escapedName": "@types%2fvalidator",
"scope": "@types",
"rawSpec": "13.0.0",
"saveSpec": null,
"fetchSpec": "13.0.0"
},
"_requiredBy": [
"/class-validator"
],
"_resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.0.0.tgz",
"_shasum": "365f1bf936aeaddd0856fc41aa1d6f82d88ee5b3",
"_spec": "@types/validator@13.0.0",
"_where": "C:\\Users\\Shaun\\.CocosCreator\\packages\\ccc-obfuscated-code\\node_modules\\class-validator",
"bugs": {
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "tgfjt",
"url": "https://github.com/tgfjt"
},
{
"name": "Ilya Mochalov",
"url": "https://github.com/chrootsu"
},
{
"name": "Ayman Nedjmeddine",
"url": "https://github.com/IOAyman"
},
{
"name": "Louay Alakkad",
"url": "https://github.com/louy"
},
{
"name": "Kacper Polak",
"url": "https://github.com/kacepe"
},
{
"name": "Bonggyun Lee",
"url": "https://github.com/deptno"
},
{
"name": "Naoto Yokoyama",
"url": "https://github.com/builtinnya"
},
{
"name": "Philipp Katz",
"url": "https://github.com/qqilihq"
},
{
"name": "Jace Warren",
"url": "https://github.com/keatz55"
},
{
"name": "Munif Tanjim",
"url": "https://github.com/MunifTanjim"
},
{
"name": "Vlad Poluch",
"url": "https://github.com/vlapo"
}
],
"dependencies": {},
"deprecated": false,
"description": "TypeScript definitions for validator.js",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme",
"license": "MIT",
"main": "",
"name": "@types/validator",
"repository": {
"type": "git",
"url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/validator"
},
"scripts": {},
"typeScriptVersion": "2.8",
"types": "index.d.ts",
"typesPublisherContentHash": "209550b08682e6342ae12050e167193d497d847b62448cedf8887f4bfce2b1a7",
"version": "13.0.0"
}