Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@formatjs/ecma402-abstract

Package Overview
Dependencies
Maintainers
3
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@formatjs/ecma402-abstract - npm Package Compare versions

Comparing version
3.0.5
to
3.0.6
+3
-3
package.json
{
"name": "@formatjs/ecma402-abstract",
"description": "A collection of implementation for ECMAScript abstract operations",
"version": "3.0.5",
"version": "3.0.6",
"license": "MIT",

@@ -16,4 +16,4 @@ "author": "Long Ho <holevietlong@gmail.com",

"tslib": "^2.8.0",
"@formatjs/intl-localematcher": "0.7.3",
"@formatjs/fast-memoize": "3.0.1"
"@formatjs/fast-memoize": "3.0.1",
"@formatjs/intl-localematcher": "0.7.3"
},

@@ -20,0 +20,0 @@ "bugs": "https://github.com/formatjs/formatjs/issues",

@@ -114,2 +114,7 @@ export type Formats = Pick<Intl.DateTimeFormatOptions, 'weekday' | 'era' | 'year' | 'month' | 'day' | 'dayPeriod' | 'hour' | 'minute' | 'second' | 'timeZoneName'> & {

};
/**
* Interval format fallback pattern from CLDR (e.g., "{0} – {1}" for English, "{0}~{1}" for Japanese)
* Used when no specific interval format is available for a given skeleton
*/
intervalFormatFallback: string;
formats: Record<string, Formats[]>;

@@ -116,0 +121,0 @@ nu: string[];