@typescript/typescript-linux-mips64el
Advanced tools
@@ -113,3 +113,3 @@ /*! ***************************************************************************** | ||
| /** | ||
| * @returns the number of (unique) elements in Set. | ||
| * @returns the number of (unique) elements in the Set. | ||
| */ | ||
@@ -126,4 +126,13 @@ readonly size: number; | ||
| interface ReadonlySet<T> { | ||
| /** | ||
| * Executes a provided function once per each value in the ReadonlySet object, in insertion order. | ||
| */ | ||
| forEach(callbackfn: (value: T, value2: T, set: ReadonlySet<T>) => void, thisArg?: any): void; | ||
| /** | ||
| * @returns a boolean indicating whether an element with the specified value exists in the Set or not. | ||
| */ | ||
| has(value: T): boolean; | ||
| /** | ||
| * @returns the number of (unique) elements in the Set. | ||
| */ | ||
| readonly size: number; | ||
@@ -130,0 +139,0 @@ } |
@@ -113,3 +113,3 @@ /*! ***************************************************************************** | ||
| /** | ||
| * Returns the sign of the x, indicating whether x is positive, negative or zero. | ||
| * Returns the sign of x, indicating whether x is positive, negative, or zero. | ||
| * @param x The numeric expression to test | ||
@@ -116,0 +116,0 @@ */ |
@@ -38,3 +38,3 @@ /*! ***************************************************************************** | ||
| * Returns a key from the global symbol registry matching the given Symbol if found. | ||
| * Otherwise, returns a undefined. | ||
| * Otherwise, returns undefined. | ||
| * @param sym Symbol to find the key for. | ||
@@ -41,0 +41,0 @@ */ |
@@ -19,26 +19,30 @@ /*! ***************************************************************************** | ||
| /** | ||
| * Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length. | ||
| * The padding is applied from the start (left) of the current string. | ||
| * Pads the current string with a given string (repeated and/or truncated, if needed) so that the resulting string has a given length. | ||
| * The padding is applied from the start of the current string. | ||
| * | ||
| * @param maxLength The length of the resulting string once the current string has been padded. | ||
| * If this parameter is smaller than the current string's length, the current string will be returned as it is. | ||
| * [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart) | ||
| * | ||
| * @param fillString The string to pad the current string with. | ||
| * If this string is too long, it will be truncated and the left-most part will be applied. | ||
| * The default value for this parameter is " " (U+0020). | ||
| * @param targetLength The length of the resulting string once the current `str` has been padded. | ||
| * If the value is less than or equal to `str.length`, then `str` is returned as-is. | ||
| * | ||
| * @param padString The string to pad the current `str` with. | ||
| * If `padString` is too long to stay within `targetLength`, it will be truncated from the end. | ||
| * The default value is the space character (U+0020). | ||
| */ | ||
| padStart(maxLength: number, fillString?: string): string; | ||
| padStart(targetLength: number, padString?: string): string; | ||
| /** | ||
| * Pads the current string with a given string (possibly repeated) so that the resulting string reaches a given length. | ||
| * The padding is applied from the end (right) of the current string. | ||
| * Pads the current string with a given string (repeated and/or truncated, if needed) so that the resulting string has a given length. | ||
| * The padding is applied from the end of the current string. | ||
| * | ||
| * @param maxLength The length of the resulting string once the current string has been padded. | ||
| * If this parameter is smaller than the current string's length, the current string will be returned as it is. | ||
| * [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd) | ||
| * | ||
| * @param fillString The string to pad the current string with. | ||
| * If this string is too long, it will be truncated and the left-most part will be applied. | ||
| * The default value for this parameter is " " (U+0020). | ||
| * @param targetLength The length of the resulting string once the current `str` has been padded. | ||
| * If the value is less than or equal to `str.length`, then `str` is returned as-is. | ||
| * | ||
| * @param padString The string to pad the current `str` with. | ||
| * If `padString` is too long to stay within `targetLength`, it will be truncated from the end. | ||
| * The default value is the space character (U+0020). | ||
| */ | ||
| padEnd(maxLength: number, fillString?: string): string; | ||
| padEnd(targetLength: number, padString?: string): string; | ||
| } |
@@ -172,11 +172,11 @@ /*! ***************************************************************************** | ||
| /** | ||
| * Returns an array of objects representing the relative time format in parts that can be used for custom locale-aware formatting. | ||
| * Returns an array of objects representing the relative time format in parts that can be used for custom locale-aware formatting. | ||
| * | ||
| * @param value - Numeric value to use in the internationalized relative time message | ||
| * @param value - Numeric value to use in the internationalized relative time message | ||
| * | ||
| * @param unit - [Unit](https://tc39.es/ecma402/#sec-singularrelativetimeunit) to use in the relative time internationalized message. | ||
| * @param unit - [Unit](https://tc39.es/ecma402/#sec-singularrelativetimeunit) to use in the relative time internationalized message. | ||
| * | ||
| * @throws `RangeError` if `unit` was given something other than `unit` possible values | ||
| * @throws `RangeError` if `unit` was given something other than `unit` possible values | ||
| * | ||
| * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts). | ||
| * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts). | ||
| */ | ||
@@ -183,0 +183,0 @@ formatToParts(value: number, unit: RelativeTimeFormatUnit): RelativeTimeFormatPart[]; |
+1
-1
@@ -224,3 +224,3 @@ NOTICES AND INFORMATION | ||
| github.com/go-json-experiment/json v0.0.0-20260601182631-00ed12fed2a6 - BSD-3-Clause | ||
| github.com/go-json-experiment/json v0.0.0-20260623181947-01eb4420fa68 - BSD-3-Clause | ||
@@ -227,0 +227,0 @@ |
+10
-10
| { | ||
| "name": "@typescript/typescript-linux-mips64el", | ||
| "version": "7.0.1-rc", | ||
| "version": "7.0.2", | ||
| "license": "Apache-2.0", | ||
| "author": "Microsoft Corp.", | ||
| "homepage": "https://www.typescriptlang.org/", | ||
| "description": "Preview CLI and JS API for the native TypeScript compiler port", | ||
| "description": "TypeScript is a language for application scale JavaScript development", | ||
| "keywords": [ | ||
@@ -13,15 +13,11 @@ "TypeScript", | ||
| "language", | ||
| "javascript", | ||
| "tsgo" | ||
| "javascript" | ||
| ], | ||
| "bugs": { | ||
| "url": "https://github.com/microsoft/typescript-go/issues" | ||
| "url": "https://github.com/microsoft/TypeScript/issues" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/microsoft/typescript-go.git" | ||
| "url": "https://github.com/microsoft/TypeScript.git" | ||
| }, | ||
| "publishConfig": { | ||
| "access": "public" | ||
| }, | ||
| "type": "module", | ||
@@ -39,3 +35,7 @@ "preferUnplugged": true, | ||
| }, | ||
| "gitHead": "a093a851632f4704ec2a59857da1dccbe6d336a3", | ||
| "gitHead": "2bd066d87f5bafd315be9f40889d0a60b9e58e0b", | ||
| "publishConfig": { | ||
| "access": "public", | ||
| "tag": "latest" | ||
| }, | ||
| "os": [ | ||
@@ -42,0 +42,0 @@ "linux" |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Unstable ownership
Supply chain riskA new collaborator has begun publishing package versions. Package stability and security risk may be elevated.
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Mixed license
LicensePackage contains multiple licenses.
Unidentified License
LicenseSomething that seems like a license was found, but its contents could not be matched with a known license.
Mixed license
LicensePackage contains multiple licenses.
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
70806
0.02%0
-100%30190618
-6.3%2
100%1
Infinity%5
25%