You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign 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.2
to
3.0.3
+3
-3
package.json
{
"name": "@formatjs/ecma402-abstract",
"description": "A collection of implementation for ECMAScript abstract operations",
"version": "3.0.2",
"version": "3.0.3",
"license": "MIT",

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

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

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

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

};
/**
* Stand-alone month names (used when month appears without other date fields)
* Falls back to format month if not provided
*/
monthStandalone?: {
narrow: string[];
long: string[];
short: string[];
};
timeZoneName: TimeZoneNameData;

@@ -79,0 +88,0 @@ /**