typescript
Advanced tools
Comparing version
@@ -6,9 +6,16 @@ TypeScript is authored by: | ||
* Adi Dahiya | ||
* Aditya Daflapurkar | ||
* Adnan Chowdhury | ||
* Adrian Leonhard | ||
* Adrien Gibrat | ||
* Ahmad Farid | ||
* Akshar Patel | ||
* Alan Agius | ||
* Alex Chugaev | ||
* Alex Eagle | ||
* Alex Khomchenko | ||
* Alex Ryan | ||
* Alexander Kuvaev | ||
* Alexander Rusakov | ||
* Alexander Tarasyuk | ||
* Ali Sabzevari | ||
@@ -22,2 +29,3 @@ * Aliaksandr Radzivanovich | ||
* Andrew Casey | ||
* Andrew Faulkner | ||
* Andrew Ochsner | ||
@@ -35,2 +43,3 @@ * Andrew Stegmaier | ||
* Arnav Singh | ||
* Artem Tyurin | ||
* Arthur Ozga | ||
@@ -40,2 +49,3 @@ * Asad Saeeduddin | ||
* Basarat Ali Syed | ||
* @begincalendar | ||
* Ben Duffield | ||
@@ -51,5 +61,8 @@ * Ben Mosher | ||
* Bowden Kelly | ||
* Bowden Kenny | ||
* Brandon Slade | ||
* Brett Mayen | ||
* Bryan Forbes | ||
* Caitlin Potter | ||
* Cameron Taggart | ||
* @cedvdb | ||
@@ -78,2 +91,4 @@ * Charles Pierce | ||
* Denis Nedelyaev | ||
* Derek P Sifford | ||
* Dhruv Rajvanshi | ||
* Dick van den Brink | ||
@@ -87,9 +102,13 @@ * Diogo Franco (Kovensky) | ||
* @e-cloud | ||
* Ecole Keine | ||
* Elisée Maurer | ||
* Emilio García-Pumarino | ||
* Eric Grube | ||
* Eric Tsang | ||
* Erik Edrosa | ||
* Erik McClenney | ||
* Esakki Raj | ||
* Ethan Resnick | ||
* Ethan Rubio | ||
* Eugene Timokhov | ||
* Evan Martin | ||
@@ -119,4 +138,6 @@ * Evan Sebastian | ||
* Herrington Darkholme | ||
* Holger Jeromin | ||
* Homa Wong | ||
* Iain Monro | ||
* @IdeaHunter | ||
* Igor Novozhilov | ||
@@ -129,2 +150,4 @@ * Ika | ||
* Iwata Hidetaka | ||
* Jack Williams | ||
* Jakub Korzeniowski | ||
* Jakub Młokosiewicz | ||
@@ -142,2 +165,3 @@ * James Henry | ||
* Jesse Schalken | ||
* Jing Ma | ||
* Jiri Tobisek | ||
@@ -155,2 +179,4 @@ * Joe Calzaretta | ||
* Jonathon Smith | ||
* Jordi Oliveras Rovira | ||
* Joscha Feth | ||
* Josh Abernathy | ||
@@ -171,5 +197,8 @@ * Josh Goldberg | ||
* Kenji Imamula | ||
* Kevin Donnelly | ||
* Kevin Lang | ||
* Khải | ||
* Kitson Kelly | ||
* Klaus Meinhardt | ||
* Kris Zyp | ||
* Kyle Kelley | ||
@@ -180,2 +209,3 @@ * Kārlis Gaņģis | ||
* Lukas Elmer | ||
* Maarten Sijm | ||
* Magnus Hiie | ||
@@ -186,3 +216,5 @@ * Magnus Kulke | ||
* Marius Schulz | ||
* Martin Hiller | ||
* Martin Vseticka | ||
* Martyn Janes | ||
* Masahiro Wakame | ||
@@ -196,6 +228,9 @@ * Matt Bierner | ||
* Maxwell Paul Brickner | ||
* @meyer | ||
* Micah Zoltu | ||
* @micbou | ||
* Michael | ||
* Michael Bromley | ||
* Mike Busyrev | ||
* Mike Morearty | ||
* Mine Starks | ||
@@ -209,2 +244,3 @@ * Mohamed Hegazy | ||
* Nicolas Henry | ||
* @nieltg | ||
* Nima Zahedi | ||
@@ -217,5 +253,8 @@ * Noah Chen | ||
* Omer Sheikh | ||
* Orta Therox | ||
* Oskar Segersva¨rd | ||
* Oussama Ben Brahim | ||
* Patrick Zhong | ||
* Paul Jolly | ||
* Paul Koerbitz | ||
* Paul van Brenk | ||
@@ -227,5 +266,7 @@ * @pcbro | ||
* Philip Bulley | ||
* Philippe Voinov | ||
* Piero Cangianiello | ||
* @piloopin | ||
* Prayag Verma | ||
* Priyantha Lankapura | ||
* @progre | ||
@@ -236,2 +277,5 @@ * Punya Biswal | ||
* Reiner Dolp | ||
* Remo H. Jansen | ||
* @rhysd | ||
* Ricardo N Feliciano | ||
* Richard Karmazín | ||
@@ -249,4 +293,7 @@ * Richard Knoll | ||
* Sarangan Rajamanickam | ||
* Sean Barag | ||
* Sergey Rubanov | ||
* Sergey Shandar | ||
* Sergii Bezliudnyi | ||
* Sharon Rolel | ||
* Sheetal Nandi | ||
@@ -260,4 +307,6 @@ * Shengping Zhong | ||
* Stan Thomas | ||
* Stanislav Iliev | ||
* Stanislav Sysoev | ||
* Stas Vilchik | ||
* Stephan Ginthör | ||
* Steve Lucco | ||
@@ -292,9 +341,13 @@ * Sudheesh Singanamalla | ||
* Vladimir Matveev | ||
* Wenlu Wang | ||
* Wesley Wigham | ||
* William Orr | ||
* Wilson Hobbs | ||
* York Yao | ||
* @yortus | ||
* Yuichi Nukiyama | ||
* Yuval Greenfield | ||
* Zeeshan Ahmed | ||
* Zev Spitz | ||
* Zhengbo Li | ||
* Zhengbo Li | ||
* @Zzzen |
@@ -27,19 +27,2 @@ /*! ***************************************************************************** | ||
interface FormData { | ||
/** | ||
* Returns an array of key, value pairs for every entry in the list | ||
*/ | ||
entries(): IterableIterator<[string, string | File]>; | ||
/** | ||
* Returns a list of keys in the list | ||
*/ | ||
keys(): IterableIterator<string>; | ||
/** | ||
* Returns a list of values in the list | ||
*/ | ||
values(): IterableIterator<string | File>; | ||
[Symbol.iterator](): IterableIterator<string | File>; | ||
} | ||
interface Headers { | ||
@@ -111,2 +94,27 @@ [Symbol.iterator](): IterableIterator<[string, string]>; | ||
interface HTMLCollectionBase { | ||
[Symbol.iterator](): IterableIterator<Element>; | ||
} | ||
interface HTMLCollectionOf<T extends Element> { | ||
[Symbol.iterator](): IterableIterator<T>; | ||
} | ||
interface FormData { | ||
/** | ||
* Returns an array of key, value pairs for every entry in the list | ||
*/ | ||
entries(): IterableIterator<[string, string | File]>; | ||
/** | ||
* Returns a list of keys in the list | ||
*/ | ||
keys(): IterableIterator<string>; | ||
/** | ||
* Returns a list of values in the list | ||
*/ | ||
values(): IterableIterator<string | File>; | ||
[Symbol.iterator](): IterableIterator<string | File>; | ||
} | ||
interface URLSearchParams { | ||
@@ -113,0 +121,0 @@ /** |
@@ -33,3 +33,3 @@ /*! ***************************************************************************** | ||
new (): Map<any, any>; | ||
new <K, V>(entries?: [K, V][]): Map<K, V>; | ||
new <K, V>(entries?: ReadonlyArray<[K, V]> | null): Map<K, V>; | ||
readonly prototype: Map<any, any>; | ||
@@ -55,3 +55,3 @@ } | ||
new (): WeakMap<object, any>; | ||
new <K extends object, V>(entries?: [K, V][]): WeakMap<K, V>; | ||
new <K extends object, V>(entries?: ReadonlyArray<[K, V]> | null): WeakMap<K, V>; | ||
readonly prototype: WeakMap<object, any>; | ||
@@ -72,3 +72,3 @@ } | ||
new (): Set<any>; | ||
new <T>(values?: T[]): Set<T>; | ||
new <T>(values?: ReadonlyArray<T> | null): Set<T>; | ||
readonly prototype: Set<any>; | ||
@@ -84,3 +84,3 @@ } | ||
interface WeakSet<T> { | ||
interface WeakSet<T extends object> { | ||
add(value: T): this; | ||
@@ -93,5 +93,5 @@ delete(value: T): boolean; | ||
new (): WeakSet<object>; | ||
new <T extends object>(values?: T[]): WeakSet<T>; | ||
new <T extends object>(values?: ReadonlyArray<T> | null): WeakSet<T>; | ||
readonly prototype: WeakSet<object>; | ||
} | ||
declare var WeakSet: WeakSetConstructor; |
@@ -21,4 +21,2 @@ /*! ***************************************************************************** | ||
declare type PropertyKey = string | number | symbol; | ||
interface Array<T> { | ||
@@ -74,6 +72,12 @@ /** | ||
* @param arrayLike An array-like object to convert to an array. | ||
*/ | ||
from<T>(arrayLike: ArrayLike<T>): T[]; | ||
/** | ||
* Creates an array from an iterable object. | ||
* @param arrayLike An array-like object to convert to an array. | ||
* @param mapfn A mapping function to call on every element of the array. | ||
* @param thisArg Value of 'this' used to invoke the mapfn. | ||
*/ | ||
from<T, U = T>(arrayLike: ArrayLike<T>, mapfn?: (v: T, k: number) => U, thisArg?: any): U[]; | ||
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[]; | ||
@@ -88,3 +92,3 @@ /** | ||
interface DateConstructor { | ||
new (value: Date): Date; | ||
new (value: number | string | Date): Date; | ||
} | ||
@@ -138,4 +142,5 @@ | ||
/** | ||
* Returns the result of (e^x - 1) of x (e raised to the power of x, where e is the base of | ||
* the natural logarithms). | ||
* Returns the result of (e^x - 1), which is an implementation-dependent approximation to | ||
* subtracting 1 from the exponential function of x (e raised to the power of x, where e | ||
* is the base of the natural logarithms). | ||
* @param x A numeric expression. | ||
@@ -278,16 +283,2 @@ */ | ||
interface Object { | ||
/** | ||
* Determines whether an object has a property with the specified name. | ||
* @param v A property name. | ||
*/ | ||
hasOwnProperty(v: PropertyKey): boolean; | ||
/** | ||
* Determines whether a specified property is enumerable. | ||
* @param v A property name. | ||
*/ | ||
propertyIsEnumerable(v: PropertyKey): boolean; | ||
} | ||
interface ObjectConstructor { | ||
@@ -348,21 +339,2 @@ /** | ||
setPrototypeOf(o: any, proto: object | null): any; | ||
/** | ||
* Gets the own property descriptor of the specified object. | ||
* An own property descriptor is one that is defined directly on the object and is not | ||
* inherited from the object's prototype. | ||
* @param o Object that contains the property. | ||
* @param p Name of the property. | ||
*/ | ||
getOwnPropertyDescriptor(o: any, propertyKey: PropertyKey): PropertyDescriptor | undefined; | ||
/** | ||
* Adds a property to an object, or modifies attributes of an existing property. | ||
* @param o Object on which to add or modify the property. This can be a native JavaScript | ||
* object (that is, a user-defined object or a built in object) or a DOM object. | ||
* @param p The property name. | ||
* @param attributes Descriptor for the property. It can be for a data property or an accessor | ||
* property. | ||
*/ | ||
defineProperty(o: any, propertyKey: PropertyKey, attributes: PropertyDescriptor): any; | ||
} | ||
@@ -472,3 +444,3 @@ | ||
* Returns a String value that is made from count copies appended together. If count is 0, | ||
* T is the empty String is returned. | ||
* the empty string is returned. | ||
* @param count number of copies to append | ||
@@ -475,0 +447,0 @@ */ |
@@ -72,2 +72,1 @@ /*! ***************************************************************************** | ||
} | ||
declare var GeneratorFunction: GeneratorFunctionConstructor; |
@@ -74,6 +74,12 @@ /*! ***************************************************************************** | ||
* @param iterable An iterable object to convert to an array. | ||
*/ | ||
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[]; | ||
/** | ||
* Creates an array from an iterable object. | ||
* @param iterable An iterable object to convert to an array. | ||
* @param mapfn A mapping function to call on every element of the array. | ||
* @param thisArg Value of 'this' used to invoke the mapfn. | ||
*/ | ||
from<T, U = T>(iterable: Iterable<T>, mapfn?: (v: T, k: number) => U, thisArg?: any): U[]; | ||
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[]; | ||
} | ||
@@ -198,3 +204,3 @@ | ||
interface WeakSet<T> { } | ||
interface WeakSet<T extends object> { } | ||
@@ -201,0 +207,0 @@ interface WeakSetConstructor { |
@@ -200,12 +200,5 @@ /*! ***************************************************************************** | ||
*/ | ||
reject(reason: any): Promise<never>; | ||
reject<T = never>(reason?: any): Promise<T>; | ||
/** | ||
* Creates a new rejected promise for the provided reason. | ||
* @param reason The reason the promise was rejected. | ||
* @returns A new rejected Promise. | ||
*/ | ||
reject<T>(reason: any): Promise<T>; | ||
/** | ||
* Creates a new resolved promise for the provided value. | ||
@@ -212,0 +205,0 @@ * @param value A promise. |
@@ -21,10 +21,2 @@ /*! ***************************************************************************** | ||
interface Symbol { | ||
/** Returns a string representation of an object. */ | ||
toString(): string; | ||
/** Returns the primitive value of the specified object. */ | ||
valueOf(): symbol; | ||
} | ||
interface SymbolConstructor { | ||
@@ -31,0 +23,0 @@ /** |
@@ -141,3 +141,3 @@ /*! ***************************************************************************** | ||
interface WeakSet<T> { | ||
interface WeakSet<T extends object> { | ||
readonly [Symbol.toStringTag]: "WeakSet"; | ||
@@ -174,3 +174,3 @@ } | ||
interface PromiseConstructor { | ||
readonly [Symbol.species]: Function; | ||
readonly [Symbol.species]: PromiseConstructor; | ||
} | ||
@@ -227,3 +227,3 @@ | ||
interface RegExpConstructor { | ||
[Symbol.species](): RegExpConstructor; | ||
readonly [Symbol.species]: RegExpConstructor; | ||
} | ||
@@ -309,1 +309,14 @@ | ||
} | ||
interface ArrayConstructor { | ||
readonly [Symbol.species]: ArrayConstructor; | ||
} | ||
interface MapConstructor { | ||
readonly [Symbol.species]: MapConstructor; | ||
} | ||
interface SetConstructor { | ||
readonly [Symbol.species]: SetConstructor; | ||
} | ||
interface ArrayBufferConstructor { | ||
readonly [Symbol.species]: ArrayBufferConstructor; | ||
} |
@@ -26,1 +26,2 @@ /*! ***************************************************************************** | ||
/// <reference path="lib.es2017.intl.d.ts" /> | ||
/// <reference path="lib.es2017.typedarrays.d.ts" /> |
@@ -21,11 +21,13 @@ /*! ***************************************************************************** | ||
type DateTimeFormatPartTypes = "day" | "dayPeriod" | "era" | "hour" | "literal" | "minute" | "month" | "second" | "timeZoneName" | "weekday" | "year"; | ||
declare namespace Intl { | ||
type DateTimeFormatPartTypes = "day" | "dayPeriod" | "era" | "hour" | "literal" | "minute" | "month" | "second" | "timeZoneName" | "weekday" | "year"; | ||
interface DateTimeFormatPart { | ||
type: DateTimeFormatPartTypes; | ||
value: string; | ||
} | ||
interface DateTimeFormatPart { | ||
type: DateTimeFormatPartTypes; | ||
value: string; | ||
} | ||
interface DateTimeFormat { | ||
formatToParts(date?: Date | number): DateTimeFormatPart[]; | ||
interface DateTimeFormat { | ||
formatToParts(date?: Date | number): DateTimeFormatPart[]; | ||
} | ||
} |
@@ -26,3 +26,3 @@ /*! ***************************************************************************** | ||
*/ | ||
values<T>(o: { [s: string]: T } | { [n: number]: T }): T[]; | ||
values<T>(o: { [s: string]: T } | ArrayLike<T>): T[]; | ||
@@ -33,3 +33,3 @@ /** | ||
*/ | ||
values(o: any): any[]; | ||
values(o: {}): any[]; | ||
@@ -40,3 +40,3 @@ /** | ||
*/ | ||
entries<T>(o: { [s: string]: T } | { [n: number]: T }): [string, T][]; | ||
entries<T>(o: { [s: string]: T } | ArrayLike<T>): [string, T][]; | ||
@@ -47,3 +47,3 @@ /** | ||
*/ | ||
entries(o: any): [string, any][]; | ||
entries(o: {}): [string, any][]; | ||
@@ -50,0 +50,0 @@ /** |
@@ -21,3 +21,4 @@ /*! ***************************************************************************** | ||
/// <reference path="lib.es2017.d.ts" /> | ||
/// <reference path="lib.es2018.d.ts" /> | ||
/// <reference path="lib.esnext.asynciterable.d.ts" /> | ||
/// <reference path="lib.esnext.array.d.ts" /> |
@@ -225,2 +225,7 @@ /*! ***************************************************************************** | ||
/** | ||
* WSH is an alias for WScript under Windows Script Host | ||
*/ | ||
declare var WSH: typeof WScript; | ||
/** | ||
* Represents an Automation SAFEARRAY | ||
@@ -227,0 +232,0 @@ */ |
@@ -26,4 +26,3 @@ /*! ***************************************************************************** | ||
} | ||
catch (_e) { | ||
} | ||
catch (_a) { } | ||
process.exit(0); |
@@ -5,3 +5,3 @@ { | ||
"homepage": "http://typescriptlang.org/", | ||
"version": "2.6.1", | ||
"version": "2.9.2", | ||
"license": "Apache-2.0", | ||
@@ -33,5 +33,5 @@ "description": "TypeScript is a language for application scale JavaScript development", | ||
"devDependencies": { | ||
"@octokit/rest": "latest", | ||
"@types/browserify": "latest", | ||
"@types/chai": "latest", | ||
"@types/colors": "latest", | ||
"@types/convert-source-map": "latest", | ||
@@ -45,2 +45,3 @@ "@types/del": "latest", | ||
"@types/gulp-sourcemaps": "latest", | ||
"@types/jake": "latest", | ||
"@types/merge2": "latest", | ||
@@ -51,11 +52,13 @@ "@types/minimatch": "latest", | ||
"@types/mocha": "latest", | ||
"@types/node": "latest", | ||
"@types/node": "8.5.5", | ||
"@types/q": "latest", | ||
"@types/run-sequence": "latest", | ||
"@types/source-map-support": "latest", | ||
"@types/through2": "latest", | ||
"@types/travis-fold": "latest", | ||
"@types/xml2js": "^0.4.0", | ||
"xml2js": "^0.4.19", | ||
"browser-resolve": "^1.11.2", | ||
"browserify": "latest", | ||
"chai": "latest", | ||
"chalk": "latest", | ||
"convert-source-map": "latest", | ||
@@ -81,12 +84,13 @@ "del": "latest", | ||
"sorcery": "latest", | ||
"source-map-support": "latest", | ||
"through2": "latest", | ||
"travis-fold": "latest", | ||
"ts-node": "latest", | ||
"tslint": "latest", | ||
"colors": "latest", | ||
"typescript": "next" | ||
"typescript": "next", | ||
"vinyl": "latest", | ||
"xml2js": "^0.4.19" | ||
}, | ||
"scripts": { | ||
"pretest": "jake tests", | ||
"test": "jake runtests-parallel", | ||
"test": "jake runtests-parallel light=false", | ||
"build": "npm run build:compiler && npm run build:tests", | ||
@@ -93,0 +97,0 @@ "build:compiler": "jake local", |
[](https://travis-ci.org/Microsoft/TypeScript) | ||
[](https://typescript.visualstudio.com/TypeScript/_build/index?context=allDefinitions&path=%5C&definitionId=4&_a=completed) | ||
[](https://www.npmjs.com/package/typescript) | ||
@@ -3,0 +4,0 @@ [](https://www.npmjs.com/package/typescript) |
/*!----------------- TypeScript ThirdPartyNotices ------------------------------------------------------- | ||
The TypeScript software is based on or incorporates material and code from the projects listed below | ||
(collectively "Third Party Code"). Microsoft is not the original author of the | ||
Third Party Code. The original copyright notice and the license, under which | ||
Microsoft received such Third Party Code, are set forth below. Such license and | ||
notices are provided for informational purposes only. Microsoft licenses the Third | ||
The TypeScript software is based on or incorporates material and code from the projects listed below | ||
(collectively "Third Party Code"). Microsoft is not the original author of the | ||
Third Party Code. The original copyright notice and the license, under which | ||
Microsoft received such Third Party Code, are set forth below. Such license and | ||
notices are provided for informational purposes only. Microsoft licenses the Third | ||
Party Code to you under the terms of the Apache 2.0 License. | ||
All Third Party Code licensed by Microsoft under the Apache License, Version 2.0 (the "License"); you | ||
may not use this file except in compliance with the License. You may obtain a copy | ||
All Third Party Code licensed by Microsoft under the Apache License, Version 2.0 (the "License"); you | ||
may not use this file except in compliance with the License. You may obtain a copy | ||
of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR | ||
CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. | ||
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR | ||
CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. | ||
See the Apache Version 2.0 License for specific language governing permissions and | ||
See the Apache Version 2.0 License for specific language governing permissions and | ||
limitations under the License. | ||
@@ -24,3 +24,3 @@ --------------------------------------------- | ||
------------------- DefinitelyTyped -------------------- | ||
This file is based on or incorporates material from the projects listed below (collectively "Third Party Code"). Microsoft is not the original author of the Third Party Code. The original copyright notice and the license, under which Microsoft received such Third Party Code, are set forth below. Such licenses and notices are provided for informational purposes only. Microsoft, not the third party, licenses the Third Party Code to you under the terms set forth in the EULA for the Microsoft Product. Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise. | ||
This file is based on or incorporates material from the projects listed below (collectively "Third Party Code"). Microsoft is not the original author of the Third Party Code. The original copyright notice and the license, under which Microsoft received such Third Party Code, are set forth below. Such licenses and notices are provided for informational purposes only. Microsoft, not the third party, licenses the Third Party Code to you under the terms set forth in the EULA for the Microsoft Product. Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise. | ||
DefinitelyTyped | ||
@@ -30,8 +30,69 @@ This project is licensed under the MIT license. | ||
Provided for Informational Purposes Only | ||
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: | ||
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. | ||
-------------------------------------------------------------------------------------- | ||
------------------- Unicode -------------------- | ||
UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE | ||
Unicode Data Files include all data files under the directories | ||
http://www.unicode.org/Public/, http://www.unicode.org/reports/, | ||
http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and | ||
http://www.unicode.org/utility/trac/browser/. | ||
Unicode Data Files do not include PDF online code charts under the | ||
directory http://www.unicode.org/Public/. | ||
Software includes any source code published in the Unicode Standard | ||
or under the directories | ||
http://www.unicode.org/Public/, http://www.unicode.org/reports/, | ||
http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and | ||
http://www.unicode.org/utility/trac/browser/. | ||
NOTICE TO USER: Carefully read the following legal agreement. | ||
BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S | ||
DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), | ||
YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE | ||
TERMS AND CONDITIONS OF THIS AGREEMENT. | ||
IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE | ||
THE DATA FILES OR SOFTWARE. | ||
COPYRIGHT AND PERMISSION NOTICE | ||
Copyright (c) 1991-2017 Unicode, Inc. All rights reserved. | ||
Distributed under the Terms of Use in http://www.unicode.org/copyright.html. | ||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of the Unicode data files and any associated documentation | ||
(the "Data Files") or Unicode software and any associated documentation | ||
(the "Software") to deal in the Data Files or Software | ||
without restriction, including without limitation the rights to use, | ||
copy, modify, merge, publish, distribute, and/or sell copies of | ||
the Data Files or Software, and to permit persons to whom the Data Files | ||
or Software are furnished to do so, provided that either | ||
(a) this copyright and permission notice appear with all copies | ||
of the Data Files or Software, or | ||
(b) this copyright and permission notice appear in associated | ||
Documentation. | ||
THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS. | ||
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS | ||
NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL | ||
DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, | ||
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | ||
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | ||
PERFORMANCE OF THE DATA FILES OR SOFTWARE. | ||
Except as contained in this notice, the name of a copyright holder | ||
shall not be used in advertising or otherwise to promote the sale, | ||
use or other dealings in these Data Files or Software without prior | ||
written authorization of the copyright holder. | ||
-------------------------------------------------------------------------------------- | ||
------------- End of ThirdPartyNotices --------------------------------------------------- */ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
37696174
13.84%72
5.88%252627
12.94%100
1.01%2
-71.43%0
-100%55
7.84%