🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@typescript/typescript-linux-mips64el

Package Overview
Dependencies
Maintainers
7
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typescript/typescript-linux-mips64el - npm Package Compare versions

Comparing version
7.0.1-rc
to
7.0.2
+10
-1
lib/lib.es2015.collection.d.ts

@@ -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 @@ }

+1
-1

@@ -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[];

@@ -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 @@

{
"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