New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@formatjs/intl-locale

Package Overview
Dependencies
Maintainers
0
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@formatjs/intl-locale - npm Package Compare versions

Comparing version 4.2.6 to 4.2.7

27

index.d.ts

@@ -31,3 +31,3 @@ export interface IntlLocaleOptions {

get collation(): string | undefined;
get caseFirst(): "upper" | "lower" | "false" | undefined;
get caseFirst(): 'upper' | 'lower' | 'false' | undefined;
get numeric(): boolean | undefined;

@@ -48,3 +48,3 @@ get numberingSystem(): string | undefined;

get firstDayOfWeek(): string | undefined;
get hourCycle(): "h11" | "h12" | "h23" | "h24" | undefined;
get hourCycle(): 'h11' | 'h12' | 'h23' | 'h24' | undefined;
/**

@@ -79,3 +79,5 @@ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getCalendars

*/
getTextInfo(): any;
getTextInfo(): {
direction: string;
};
/**

@@ -85,6 +87,21 @@ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo

*/
getWeekInfo(): any;
static relevantExtensionKeys: readonly ["ca", "co", "hc", "kf", "kn", "nu", "fw"];
getWeekInfo(): {
firstDay: string;
weekend: {
start: string;
end: string;
};
minimalDays: number;
};
static relevantExtensionKeys: readonly [
'ca',
'co',
'hc',
'kf',
'kn',
'nu',
'fw'
];
static readonly polyfilled = true;
}
export default Locale;

@@ -31,3 +31,3 @@ export interface IntlLocaleOptions {

get collation(): string | undefined;
get caseFirst(): "upper" | "lower" | "false" | undefined;
get caseFirst(): 'upper' | 'lower' | 'false' | undefined;
get numeric(): boolean | undefined;

@@ -48,3 +48,3 @@ get numberingSystem(): string | undefined;

get firstDayOfWeek(): string | undefined;
get hourCycle(): "h11" | "h12" | "h23" | "h24" | undefined;
get hourCycle(): 'h11' | 'h12' | 'h23' | 'h24' | undefined;
/**

@@ -79,3 +79,5 @@ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getCalendars

*/
getTextInfo(): any;
getTextInfo(): {
direction: string;
};
/**

@@ -85,6 +87,21 @@ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo

*/
getWeekInfo(): any;
static relevantExtensionKeys: readonly ["ca", "co", "hc", "kf", "kn", "nu", "fw"];
getWeekInfo(): {
firstDay: string;
weekend: {
start: string;
end: string;
};
minimalDays: number;
};
static relevantExtensionKeys: readonly [
'ca',
'co',
'hc',
'kf',
'kn',
'nu',
'fw'
];
static readonly polyfilled = true;
}
export default Locale;

8

package.json
{
"name": "@formatjs/intl-locale",
"version": "4.2.6",
"version": "4.2.7",
"description": "Intl.Locale polyfill",

@@ -28,6 +28,6 @@ "keywords": [

"tslib": "2",
"@formatjs/ecma402-abstract": "2.2.5",
"@formatjs/intl-enumerator": "1.8.5",
"@formatjs/intl-getcanonicallocales": "2.5.3"
"@formatjs/ecma402-abstract": "2.3.0",
"@formatjs/intl-enumerator": "1.8.6",
"@formatjs/intl-getcanonicallocales": "2.5.4"
}
}

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc