Socket
Socket
Sign inDemoInstall

@formatjs/intl-unified-numberformat

Package Overview
Dependencies
Maintainers
2
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.5.0 to 0.5.1

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [0.5.1](https://github.com/formatjs/formatjs/compare/@formatjs/intl-unified-numberformat@0.5.0...@formatjs/intl-unified-numberformat@0.5.1) (2019-09-15)
**Note:** Version bump only for package @formatjs/intl-unified-numberformat
# [0.5.0](https://github.com/formatjs/formatjs/compare/@formatjs/intl-unified-numberformat@0.4.9...@formatjs/intl-unified-numberformat@0.5.0) (2019-09-13)

@@ -8,0 +16,0 @@

19

dist/core.d.ts
import { Unit } from './units-constants';
import { UnifiedNumberFormatLocaleData } from '@formatjs/intl-utils';
export declare function isUnitSupported(unit: Unit): boolean;

@@ -11,16 +12,2 @@ export interface UnifiedNumberFormatOptions extends Intl.NumberFormatOptions {

}
export interface LocaleData {
locale: string;
units: Record<string, UnitData>;
}
interface UnitPattern {
one?: string;
other?: string;
}
export interface UnitData {
displayName: string;
long: UnitPattern;
short?: UnitPattern;
narrow?: UnitPattern;
}
declare const NativeNumberFormat: {

@@ -44,5 +31,5 @@ (locales?: string | string[] | undefined, options?: Intl.NumberFormatOptions | undefined): Intl.NumberFormat;

static polyfilled: boolean;
static __unitLocaleData__: Record<string, LocaleData>;
static __addUnitLocaleData(data: LocaleData[]): void;
static __unitLocaleData__: Record<string, UnifiedNumberFormatLocaleData>;
static __addUnitLocaleData(data: UnifiedNumberFormatLocaleData[]): void;
}
export {};

@@ -1,3 +0,3 @@

import { LocaleData } from './core';
declare const data: LocaleData[];
import { UnifiedNumberFormatLocaleData } from '@formatjs/intl-utils';
declare const data: UnifiedNumberFormatLocaleData[];
export default data;
import { Unit } from './units-constants';
import { UnifiedNumberFormatLocaleData } from '@formatjs/intl-utils';
export declare function isUnitSupported(unit: Unit): boolean;

@@ -11,16 +12,2 @@ export interface UnifiedNumberFormatOptions extends Intl.NumberFormatOptions {

}
export interface LocaleData {
locale: string;
units: Record<string, UnitData>;
}
interface UnitPattern {
one?: string;
other?: string;
}
export interface UnitData {
displayName: string;
long: UnitPattern;
short?: UnitPattern;
narrow?: UnitPattern;
}
declare const NativeNumberFormat: {

@@ -44,5 +31,5 @@ (locales?: string | string[] | undefined, options?: Intl.NumberFormatOptions | undefined): Intl.NumberFormat;

static polyfilled: boolean;
static __unitLocaleData__: Record<string, LocaleData>;
static __addUnitLocaleData(data: LocaleData[]): void;
static __unitLocaleData__: Record<string, UnifiedNumberFormatLocaleData>;
static __addUnitLocaleData(data: UnifiedNumberFormatLocaleData[]): void;
}
export {};

@@ -1,3 +0,3 @@

import { LocaleData } from './core';
declare const data: LocaleData[];
import { UnifiedNumberFormatLocaleData } from '@formatjs/intl-utils';
declare const data: UnifiedNumberFormatLocaleData[];
export default data;
{
"name": "@formatjs/intl-unified-numberformat",
"version": "0.5.0",
"version": "0.5.1",
"description": "Ponyfill for intl unified numberformat proposal",

@@ -22,7 +22,7 @@ "keywords": [

"devDependencies": {
"@formatjs/intl-pluralrules": "^1.1.3",
"formatjs-extract-cldr-data": "^9.7.0"
"@formatjs/intl-pluralrules": "^1.1.4",
"formatjs-extract-cldr-data": "^9.7.1"
},
"dependencies": {
"@formatjs/intl-utils": "^1.1.0"
"@formatjs/intl-utils": "^1.1.1"
},

@@ -40,3 +40,3 @@ "scripts": {

},
"gitHead": "78355538d14153fa3e52d483b7840106573c3fc7"
"gitHead": "7e0eccfc4278e044a7ea583468844ab8295aedf7"
}

@@ -6,2 +6,4 @@ import {Unit} from './units-constants';

supportedLocalesOf,
UnitData,
UnifiedNumberFormatLocaleData,
} from '@formatjs/intl-utils';

@@ -32,18 +34,2 @@

export interface LocaleData {
locale: string;
units: Record<string, UnitData>;
}
interface UnitPattern {
one?: string;
other?: string;
}
export interface UnitData {
displayName: string;
long: UnitPattern;
short?: UnitPattern;
narrow?: UnitPattern;
}
const NativeNumberFormat = Intl.NumberFormat;

@@ -149,4 +135,4 @@

static polyfilled = true;
static __unitLocaleData__: Record<string, LocaleData> = {};
static __addUnitLocaleData(data: LocaleData[]) {
static __unitLocaleData__: Record<string, UnifiedNumberFormatLocaleData> = {};
static __addUnitLocaleData(data: UnifiedNumberFormatLocaleData[]) {
data.forEach(datum => {

@@ -153,0 +139,0 @@ if (!(datum && datum.locale)) {

/* @generated */
// prettier-ignore
import {LocaleData} from './core';
const data: LocaleData[] = [{"locale":"en-001","units":{"hour":{"displayName":"hours","long":{"one":"{0} hour","other":"{0} hours"},"short":{"one":"{0} hr","other":"{0} hrs"},"narrow":{"one":"{0}h","other":"{0}h"}},"minute":{"displayName":"minutes","long":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min","other":"{0} mins"},"narrow":{"one":"{0}m","other":"{0}m"}},"second":{"displayName":"seconds","long":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec","other":"{0} secs"},"narrow":{"one":"{0}s","other":"{0}s"}},"centimeter":{"displayName":"centimetres","long":{"one":"{0} centimetre","other":"{0} centimetres"},"short":{"one":"{0} cm","other":"{0} cm"},"narrow":{"one":"{0}cm","other":"{0}cm"}},"kilometer":{"displayName":"kilometres","long":{"one":"{0} kilometre","other":"{0} kilometres"},"short":{"one":"{0} km","other":"{0} km"},"narrow":{"one":"{0}km","other":"{0}km"}},"meter":{"displayName":"metres","long":{"one":"{0} metre","other":"{0} metres"},"short":{"one":"{0} m","other":"{0} m"},"narrow":{"one":"{0}m","other":"{0}m"}},"millimeter":{"displayName":"millimetres","long":{"one":"{0} millimetre","other":"{0} millimetres"},"short":{"one":"{0} mm","other":"{0} mm"},"narrow":{"one":"{0}mm","other":"{0}mm"}},"pound":{"displayName":"pounds","long":{"one":"{0} pound","other":"{0} pounds"},"short":{"one":"{0} lb","other":"{0} lb"},"narrow":{"one":"{0}lb","other":"{0}lb"}},"stone":{"displayName":"stone","long":{"one":"{0} stone","other":"{0} stone"},"short":{"one":"{0} st","other":"{0} st"},"narrow":{"one":"{0}st","other":"{0}st"}},"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°","other":"{0}°"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°F","other":"{0}°F"}},"gallon":{"displayName":"US gallons","long":{"one":"{0} US gallon","other":"{0} US gallons"},"short":{"one":"{0} gal US","other":"{0} gal US"},"narrow":{"one":"{0}galUS","other":"{0}galUS"}},"liter":{"displayName":"litres","long":{"one":"{0} litre","other":"{0} litres"},"short":{"one":"{0} l","other":"{0} l"},"narrow":{"one":"{0}l","other":"{0}l"}},"milliliter":{"displayName":"millilitres","long":{"one":"{0} millilitre","other":"{0} millilitres"},"short":{"one":"{0} ml","other":"{0} ml"},"narrow":{"one":"{0}ml","other":"{0}ml"}}}},{"locale":"en","units":{"degree":{"displayName":"degrees","long":{"one":"{0} degree","other":"{0} degrees"},"short":{"one":"{0} deg","other":"{0} deg"},"narrow":{"one":"{0}°","other":"{0}°"}},"acre":{"displayName":"acres","long":{"one":"{0} acre","other":"{0} acres"},"short":{"one":"{0} ac","other":"{0} ac"},"narrow":{"one":"{0}ac","other":"{0}ac"}},"hectare":{"displayName":"hectares","long":{"one":"{0} hectare","other":"{0} hectares"},"short":{"one":"{0} ha","other":"{0} ha"},"narrow":{"one":"{0}ha","other":"{0}ha"}},"percent":{"displayName":"percent","long":{"one":"{0} percent","other":"{0} percent"},"short":{"one":"{0}%","other":"{0}%"},"narrow":{"one":"{0}%","other":"{0}%"}},"bit":{"displayName":"bits","long":{"one":"{0} bit","other":"{0} bits"},"short":{"one":"{0} bit","other":"{0} bit"},"narrow":{"one":"{0}bit","other":"{0}bit"}},"byte":{"displayName":"bytes","long":{"one":"{0} byte","other":"{0} bytes"},"short":{"one":"{0} byte","other":"{0} byte"},"narrow":{"one":"{0}B","other":"{0}B"}},"gigabit":{"displayName":"gigabits","long":{"one":"{0} gigabit","other":"{0} gigabits"},"short":{"one":"{0} Gb","other":"{0} Gb"},"narrow":{"one":"{0}Gb","other":"{0}Gb"}},"gigabyte":{"displayName":"gigabytes","long":{"one":"{0} gigabyte","other":"{0} gigabytes"},"short":{"one":"{0} GB","other":"{0} GB"},"narrow":{"one":"{0}GB","other":"{0}GB"}},"kilobit":{"displayName":"kilobits","long":{"one":"{0} kilobit","other":"{0} kilobits"},"short":{"one":"{0} kb","other":"{0} kb"},"narrow":{"one":"{0}kb","other":"{0}kb"}},"kilobyte":{"displayName":"kilobytes","long":{"one":"{0} kilobyte","other":"{0} kilobytes"},"short":{"one":"{0} kB","other":"{0} kB"},"narrow":{"one":"{0}kB","other":"{0}kB"}},"megabit":{"displayName":"megabits","long":{"one":"{0} megabit","other":"{0} megabits"},"short":{"one":"{0} Mb","other":"{0} Mb"},"narrow":{"one":"{0}Mb","other":"{0}Mb"}},"megabyte":{"displayName":"megabytes","long":{"one":"{0} megabyte","other":"{0} megabytes"},"short":{"one":"{0} MB","other":"{0} MB"},"narrow":{"one":"{0}MB","other":"{0}MB"}},"petabyte":{"displayName":"petabytes","long":{"one":"{0} petabyte","other":"{0} petabytes"},"short":{"one":"{0} PB","other":"{0} PB"},"narrow":{"one":"{0}PB","other":"{0}PB"}},"terabit":{"displayName":"terabits","long":{"one":"{0} terabit","other":"{0} terabits"},"short":{"one":"{0} Tb","other":"{0} Tb"},"narrow":{"one":"{0}Tb","other":"{0}Tb"}},"terabyte":{"displayName":"terabytes","long":{"one":"{0} terabyte","other":"{0} terabytes"},"short":{"one":"{0} TB","other":"{0} TB"},"narrow":{"one":"{0}TB","other":"{0}TB"}},"day":{"displayName":"days","long":{"one":"{0} day","other":"{0} days"},"short":{"one":"{0} day","other":"{0} days"},"narrow":{"one":"{0}d","other":"{0}d"}},"hour":{"displayName":"hours","long":{"one":"{0} hour","other":"{0} hours"},"short":{"one":"{0} hr","other":"{0} hr"},"narrow":{"one":"{0}h","other":"{0}h"}},"millisecond":{"displayName":"milliseconds","long":{"one":"{0} millisecond","other":"{0} milliseconds"},"short":{"one":"{0} ms","other":"{0} ms"},"narrow":{"one":"{0}ms","other":"{0}ms"}},"minute":{"displayName":"minutes","long":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min","other":"{0} min"},"narrow":{"one":"{0}m","other":"{0}m"}},"month":{"displayName":"months","long":{"one":"{0} month","other":"{0} months"},"short":{"one":"{0} mth","other":"{0} mths"},"narrow":{"one":"{0}m","other":"{0}m"}},"second":{"displayName":"seconds","long":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec","other":"{0} sec"},"narrow":{"one":"{0}s","other":"{0}s"}},"week":{"displayName":"weeks","long":{"one":"{0} week","other":"{0} weeks"},"short":{"one":"{0} wk","other":"{0} wks"},"narrow":{"one":"{0}w","other":"{0}w"}},"year":{"displayName":"years","long":{"one":"{0} year","other":"{0} years"},"short":{"one":"{0} yr","other":"{0} yrs"},"narrow":{"one":"{0}y","other":"{0}y"}},"centimeter":{"displayName":"centimeters","long":{"one":"{0} centimeter","other":"{0} centimeters"},"short":{"one":"{0} cm","other":"{0} cm"},"narrow":{"one":"{0}cm","other":"{0}cm"}},"foot":{"displayName":"feet","long":{"one":"{0} foot","other":"{0} feet"},"short":{"one":"{0} ft","other":"{0} ft"},"narrow":{"one":"{0}′","other":"{0}′"}},"inch":{"displayName":"inches","long":{"one":"{0} inch","other":"{0} inches"},"short":{"one":"{0} in","other":"{0} in"},"narrow":{"one":"{0}″","other":"{0}″"}},"kilometer":{"displayName":"kilometers","long":{"one":"{0} kilometer","other":"{0} kilometers"},"short":{"one":"{0} km","other":"{0} km"},"narrow":{"one":"{0}km","other":"{0}km"}},"meter":{"displayName":"meters","long":{"one":"{0} meter","other":"{0} meters"},"short":{"one":"{0} m","other":"{0} m"},"narrow":{"one":"{0}m","other":"{0}m"}},"mile-scandinavian":{"displayName":"mile-scandinavian","long":{"one":"{0} mile-scandinavian","other":"{0} miles-scandinavian"},"short":{"one":"{0} smi","other":"{0} smi"},"narrow":{"one":"{0}smi","other":"{0}smi"}},"mile":{"displayName":"miles","long":{"one":"{0} mile","other":"{0} miles"},"short":{"one":"{0} mi","other":"{0} mi"},"narrow":{"one":"{0}mi","other":"{0}mi"}},"millimeter":{"displayName":"millimeters","long":{"one":"{0} millimeter","other":"{0} millimeters"},"short":{"one":"{0} mm","other":"{0} mm"},"narrow":{"one":"{0}mm","other":"{0}mm"}},"yard":{"displayName":"yards","long":{"one":"{0} yard","other":"{0} yards"},"short":{"one":"{0} yd","other":"{0} yd"},"narrow":{"one":"{0}yd","other":"{0}yd"}},"gram":{"displayName":"grams","long":{"one":"{0} gram","other":"{0} grams"},"short":{"one":"{0} g","other":"{0} g"},"narrow":{"one":"{0}g","other":"{0}g"}},"kilogram":{"displayName":"kilograms","long":{"one":"{0} kilogram","other":"{0} kilograms"},"short":{"one":"{0} kg","other":"{0} kg"},"narrow":{"one":"{0}kg","other":"{0}kg"}},"ounce":{"displayName":"ounces","long":{"one":"{0} ounce","other":"{0} ounces"},"short":{"one":"{0} oz","other":"{0} oz"},"narrow":{"one":"{0}oz","other":"{0}oz"}},"pound":{"displayName":"pounds","long":{"one":"{0} pound","other":"{0} pounds"},"short":{"one":"{0} lb","other":"{0} lb"},"narrow":{"one":"{0}#","other":"{0}#"}},"stone":{"displayName":"stones","long":{"one":"{0} stone","other":"{0} stones"},"short":{"one":"{0} st","other":"{0} st"},"narrow":{"one":"{0}st","other":"{0}st"}},"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°C","other":"{0}°C"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°","other":"{0}°"}},"fluid-ounce":{"displayName":"fluid ounces","long":{"one":"{0} fluid ounce","other":"{0} fluid ounces"},"short":{"one":"{0} fl oz","other":"{0} fl oz"},"narrow":{"one":"{0}fl oz","other":"{0}fl oz"}},"gallon":{"displayName":"gallons","long":{"one":"{0} gallon","other":"{0} gallons"},"short":{"one":"{0} gal","other":"{0} gal"},"narrow":{"one":"{0}gal","other":"{0}gal"}},"liter":{"displayName":"liters","long":{"one":"{0} liter","other":"{0} liters"},"short":{"one":"{0} L","other":"{0} L"},"narrow":{"one":"{0}L","other":"{0}L"}},"milliliter":{"displayName":"milliliters","long":{"one":"{0} milliliter","other":"{0} milliliters"},"short":{"one":"{0} mL","other":"{0} mL"},"narrow":{"one":"{0}mL","other":"{0}mL"}}}},{"locale":"en-150","units":{"hour":{"displayName":"hours","long":{"one":"{0} hour","other":"{0} hours"},"short":{"one":"{0} hr","other":"{0} hrs"},"narrow":{"one":"{0}h","other":"{0}h"}},"minute":{"displayName":"minutes","long":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min","other":"{0} mins"},"narrow":{"one":"{0}m","other":"{0}m"}},"second":{"displayName":"seconds","long":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec","other":"{0} secs"},"narrow":{"one":"{0}s","other":"{0}s"}},"centimeter":{"displayName":"centimetres","long":{"one":"{0} centimetre","other":"{0} centimetres"},"short":{"one":"{0} cm","other":"{0} cm"},"narrow":{"one":"{0}cm","other":"{0}cm"}},"kilometer":{"displayName":"kilometres","long":{"one":"{0} kilometre","other":"{0} kilometres"},"short":{"one":"{0} km","other":"{0} km"},"narrow":{"one":"{0}km","other":"{0}km"}},"meter":{"displayName":"metres","long":{"one":"{0} metre","other":"{0} metres"},"short":{"one":"{0} m","other":"{0} m"},"narrow":{"one":"{0}m","other":"{0}m"}},"millimeter":{"displayName":"millimetres","long":{"one":"{0} millimetre","other":"{0} millimetres"},"short":{"one":"{0} mm","other":"{0} mm"},"narrow":{"one":"{0}mm","other":"{0}mm"}},"pound":{"displayName":"pounds","long":{"one":"{0} pound","other":"{0} pounds"},"short":{"one":"{0} lb","other":"{0} lb"},"narrow":{"one":"{0}lb","other":"{0}lb"}},"stone":{"displayName":"stone","long":{"one":"{0} stone","other":"{0} stone"},"short":{"one":"{0} st","other":"{0} st"},"narrow":{"one":"{0}st","other":"{0}st"}},"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°","other":"{0}°"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°F","other":"{0}°F"}},"gallon":{"displayName":"US gallons","long":{"one":"{0} US gallon","other":"{0} US gallons"},"short":{"one":"{0} gal US","other":"{0} gal US"},"narrow":{"one":"{0}galUS","other":"{0}galUS"}},"liter":{"displayName":"litres","long":{"one":"{0} litre","other":"{0} litres"},"short":{"one":"{0} l","other":"{0} l"},"narrow":{"one":"{0}l","other":"{0}l"}},"milliliter":{"displayName":"millilitres","long":{"one":"{0} millilitre","other":"{0} millilitres"},"short":{"one":"{0} ml","other":"{0} ml"},"narrow":{"one":"{0}ml","other":"{0}ml"}}}},{"locale":"en-AU","units":{"degree":{"displayName":"degrees","long":{"one":"{0} degree","other":"{0} degrees"},"short":{"one":"{0} deg.","other":"{0} deg."},"narrow":{"one":"{0}°","other":"{0}°"}},"percent":{"displayName":"per cent","long":{"one":"{0} per cent","other":"{0} per cent"},"short":{"one":"{0}%","other":"{0}%"},"narrow":{"one":"{0}%","other":"{0}%"}},"minute":{"displayName":"minutes","long":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min.","other":"{0} min."},"narrow":{"one":"{0}min.","other":"{0}min."}},"month":{"displayName":"months","long":{"one":"{0} month","other":"{0} months"},"short":{"one":"{0} m.","other":"{0} m."},"narrow":{"one":"{0}m","other":"{0}m"}},"second":{"displayName":"seconds","long":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec.","other":"{0} sec."},"narrow":{"one":"{0}s.","other":"{0}s."}},"kilometer":{"displayName":"kilometre","long":{"one":"{0} kilometre","other":"{0} kilometres"},"short":{"one":"{0} km","other":"{0} km"},"narrow":{"one":"{0}km","other":"{0}km"}},"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°C","other":"{0}°C"}},"gallon":{"displayName":"US gallons","long":{"one":"{0} US gallon","other":"{0} US gallons"},"short":{"one":"{0} gal. US","other":"{0} gal. US"},"narrow":{"one":"{0}galUS","other":"{0}galUS"}},"liter":{"displayName":"litres","long":{"one":"{0} litre","other":"{0} litres"},"short":{"one":"{0} L","other":"{0} L"},"narrow":{"one":"{0}L","other":"{0}L"}},"milliliter":{"displayName":"millilitres","long":{"one":"{0} millilitre","other":"{0} millilitres"},"short":{"one":"{0} mL","other":"{0} mL"},"narrow":{"one":"{0}mL","other":"{0}mL"}}}},{"locale":"en-BS","units":{"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°C","other":"{0}°C"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°","other":"{0}°"}}}},{"locale":"en-BZ","units":{"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°C","other":"{0}°C"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°","other":"{0}°"}}}},{"locale":"en-CA","units":{"degree":{"displayName":"degrees","long":{"one":"{0} degree","other":"{0} degrees"},"short":{"one":"{0} deg.","other":"{0} deg."},"narrow":{"one":"{0}°","other":"{0}°"}},"acre":{"displayName":"acres","long":{"one":"{0} acre","other":"{0} acres"},"short":{"one":"{0} ac.","other":"{0} ac."},"narrow":{"one":"{0}ac","other":"{0}ac"}},"day":{"displayName":"days","long":{"one":"{0} day","other":"{0} days"},"short":{"one":"{0} day","other":"{0} days"},"narrow":{"one":"{0} d","other":"{0} d"}},"hour":{"displayName":"hours","long":{"one":"{0} hour","other":"{0} hours"},"short":{"one":"{0} hr.","other":"{0} hrs."},"narrow":{"one":"{0} h","other":"{0} h"}},"millisecond":{"displayName":"milliseconds","long":{"one":"{0} millisecond","other":"{0} milliseconds"},"short":{"one":"{0} millisec.","other":"{0} millisecs."},"narrow":{"one":"{0} msec.","other":"{0} msec."}},"minute":{"displayName":"minutes","long":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min.","other":"{0} min."},"narrow":{"one":"{0} min.","other":"{0} min."}},"month":{"displayName":"months","long":{"one":"{0} month","other":"{0} months"},"short":{"one":"{0} mo.","other":"{0} mos."},"narrow":{"one":"{0} m","other":"{0} m"}},"second":{"displayName":"seconds","long":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec.","other":"{0} secs."},"narrow":{"one":"{0} sec.","other":"{0} sec."}},"week":{"displayName":"weeks","long":{"one":"{0} week","other":"{0} weeks"},"short":{"one":"{0} wk.","other":"{0} wks."},"narrow":{"one":"{0} w","other":"{0} w"}},"year":{"displayName":"years","long":{"one":"{0} year","other":"{0} years"},"short":{"one":"{0} yr.","other":"{0} yrs."},"narrow":{"one":"{0} y","other":"{0} y"}},"foot":{"displayName":"feet","long":{"one":"{0} foot","other":"{0} feet"},"short":{"one":"{0} ft.","other":"{0} ft."},"narrow":{"one":"{0}′","other":"{0}′"}},"inch":{"displayName":"inches","long":{"one":"{0} inch","other":"{0} inches"},"short":{"one":"{0} in.","other":"{0} in."},"narrow":{"one":"{0}″","other":"{0}″"}},"mile":{"displayName":"miles","long":{"one":"{0} mile","other":"{0} miles"},"short":{"one":"{0} mi.","other":"{0} mi."},"narrow":{"one":"{0}mi","other":"{0}mi"}},"yard":{"displayName":"yards","long":{"one":"{0} yard","other":"{0} yards"},"short":{"one":"{0} yd.","other":"{0} yd."},"narrow":{"one":"{0}yd","other":"{0}yd"}},"ounce":{"displayName":"ounces","long":{"one":"{0} ounce","other":"{0} ounces"},"short":{"one":"{0} oz.","other":"{0} oz."},"narrow":{"one":"{0}oz","other":"{0}oz"}},"pound":{"displayName":"pounds","long":{"one":"{0} pound","other":"{0} pounds"},"short":{"one":"{0} lb.","other":"{0} lb."},"narrow":{"one":"{0}lb","other":"{0}lb"}},"stone":{"displayName":"stone","long":{"one":"{0} stone","other":"{0} stone"},"short":{"one":"{0} st.","other":"{0} st."},"narrow":{"one":"{0}st","other":"{0}st"}},"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0} °C","other":"{0} °C"},"narrow":{"one":"{0}°","other":"{0}°"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0} °F","other":"{0} °F"},"narrow":{"one":"{0}°F","other":"{0}°F"}},"fluid-ounce":{"displayName":"fluid ounces","long":{"one":"{0} fluid ounce","other":"{0} fluid ounces"},"short":{"one":"{0} fl. oz.","other":"{0} fl. oz."},"narrow":{"one":"{0}fl oz","other":"{0}fl oz"}},"gallon":{"displayName":"US gallons","long":{"one":"{0} US gallon","other":"{0} US gallons"},"short":{"one":"{0} US gal.","other":"{0} US gal."},"narrow":{"one":"{0}galUS","other":"{0}galUS"}},"liter":{"displayName":"litres","long":{"one":"{0} litre","other":"{0} litres"},"short":{"one":"{0} L","other":"{0} L"},"narrow":{"one":"{0}L","other":"{0}L"}},"milliliter":{"displayName":"millilitres","long":{"one":"{0} millilitre","other":"{0} millilitres"},"short":{"one":"{0} mL","other":"{0} mL"},"narrow":{"one":"{0}mL","other":"{0}mL"}}}},{"locale":"en-GB","units":{"percent":{"displayName":"per cent","long":{"one":"{0} per cent","other":"{0} per cent"},"short":{"one":"{0}%","other":"{0}%"},"narrow":{"one":"{0}%","other":"{0}%"}}}},{"locale":"en-KY","units":{"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°C","other":"{0}°C"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°","other":"{0}°"}}}},{"locale":"en-PW","units":{"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°C","other":"{0}°C"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°","other":"{0}°"}}}}];
import {UnifiedNumberFormatLocaleData} from '@formatjs/intl-utils';
const data: UnifiedNumberFormatLocaleData[] = [{"locale":"en-001","units":{"hour":{"displayName":"hours","long":{"one":"{0} hour","other":"{0} hours"},"short":{"one":"{0} hr","other":"{0} hrs"},"narrow":{"one":"{0}h","other":"{0}h"}},"minute":{"displayName":"minutes","long":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min","other":"{0} mins"},"narrow":{"one":"{0}m","other":"{0}m"}},"second":{"displayName":"seconds","long":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec","other":"{0} secs"},"narrow":{"one":"{0}s","other":"{0}s"}},"centimeter":{"displayName":"centimetres","long":{"one":"{0} centimetre","other":"{0} centimetres"},"short":{"one":"{0} cm","other":"{0} cm"},"narrow":{"one":"{0}cm","other":"{0}cm"}},"kilometer":{"displayName":"kilometres","long":{"one":"{0} kilometre","other":"{0} kilometres"},"short":{"one":"{0} km","other":"{0} km"},"narrow":{"one":"{0}km","other":"{0}km"}},"meter":{"displayName":"metres","long":{"one":"{0} metre","other":"{0} metres"},"short":{"one":"{0} m","other":"{0} m"},"narrow":{"one":"{0}m","other":"{0}m"}},"millimeter":{"displayName":"millimetres","long":{"one":"{0} millimetre","other":"{0} millimetres"},"short":{"one":"{0} mm","other":"{0} mm"},"narrow":{"one":"{0}mm","other":"{0}mm"}},"pound":{"displayName":"pounds","long":{"one":"{0} pound","other":"{0} pounds"},"short":{"one":"{0} lb","other":"{0} lb"},"narrow":{"one":"{0}lb","other":"{0}lb"}},"stone":{"displayName":"stone","long":{"one":"{0} stone","other":"{0} stone"},"short":{"one":"{0} st","other":"{0} st"},"narrow":{"one":"{0}st","other":"{0}st"}},"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°","other":"{0}°"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°F","other":"{0}°F"}},"gallon":{"displayName":"US gallons","long":{"one":"{0} US gallon","other":"{0} US gallons"},"short":{"one":"{0} gal US","other":"{0} gal US"},"narrow":{"one":"{0}galUS","other":"{0}galUS"}},"liter":{"displayName":"litres","long":{"one":"{0} litre","other":"{0} litres"},"short":{"one":"{0} l","other":"{0} l"},"narrow":{"one":"{0}l","other":"{0}l"}},"milliliter":{"displayName":"millilitres","long":{"one":"{0} millilitre","other":"{0} millilitres"},"short":{"one":"{0} ml","other":"{0} ml"},"narrow":{"one":"{0}ml","other":"{0}ml"}}}},{"locale":"en","units":{"degree":{"displayName":"degrees","long":{"one":"{0} degree","other":"{0} degrees"},"short":{"one":"{0} deg","other":"{0} deg"},"narrow":{"one":"{0}°","other":"{0}°"}},"acre":{"displayName":"acres","long":{"one":"{0} acre","other":"{0} acres"},"short":{"one":"{0} ac","other":"{0} ac"},"narrow":{"one":"{0}ac","other":"{0}ac"}},"hectare":{"displayName":"hectares","long":{"one":"{0} hectare","other":"{0} hectares"},"short":{"one":"{0} ha","other":"{0} ha"},"narrow":{"one":"{0}ha","other":"{0}ha"}},"percent":{"displayName":"percent","long":{"one":"{0} percent","other":"{0} percent"},"short":{"one":"{0}%","other":"{0}%"},"narrow":{"one":"{0}%","other":"{0}%"}},"bit":{"displayName":"bits","long":{"one":"{0} bit","other":"{0} bits"},"short":{"one":"{0} bit","other":"{0} bit"},"narrow":{"one":"{0}bit","other":"{0}bit"}},"byte":{"displayName":"bytes","long":{"one":"{0} byte","other":"{0} bytes"},"short":{"one":"{0} byte","other":"{0} byte"},"narrow":{"one":"{0}B","other":"{0}B"}},"gigabit":{"displayName":"gigabits","long":{"one":"{0} gigabit","other":"{0} gigabits"},"short":{"one":"{0} Gb","other":"{0} Gb"},"narrow":{"one":"{0}Gb","other":"{0}Gb"}},"gigabyte":{"displayName":"gigabytes","long":{"one":"{0} gigabyte","other":"{0} gigabytes"},"short":{"one":"{0} GB","other":"{0} GB"},"narrow":{"one":"{0}GB","other":"{0}GB"}},"kilobit":{"displayName":"kilobits","long":{"one":"{0} kilobit","other":"{0} kilobits"},"short":{"one":"{0} kb","other":"{0} kb"},"narrow":{"one":"{0}kb","other":"{0}kb"}},"kilobyte":{"displayName":"kilobytes","long":{"one":"{0} kilobyte","other":"{0} kilobytes"},"short":{"one":"{0} kB","other":"{0} kB"},"narrow":{"one":"{0}kB","other":"{0}kB"}},"megabit":{"displayName":"megabits","long":{"one":"{0} megabit","other":"{0} megabits"},"short":{"one":"{0} Mb","other":"{0} Mb"},"narrow":{"one":"{0}Mb","other":"{0}Mb"}},"megabyte":{"displayName":"megabytes","long":{"one":"{0} megabyte","other":"{0} megabytes"},"short":{"one":"{0} MB","other":"{0} MB"},"narrow":{"one":"{0}MB","other":"{0}MB"}},"petabyte":{"displayName":"petabytes","long":{"one":"{0} petabyte","other":"{0} petabytes"},"short":{"one":"{0} PB","other":"{0} PB"},"narrow":{"one":"{0}PB","other":"{0}PB"}},"terabit":{"displayName":"terabits","long":{"one":"{0} terabit","other":"{0} terabits"},"short":{"one":"{0} Tb","other":"{0} Tb"},"narrow":{"one":"{0}Tb","other":"{0}Tb"}},"terabyte":{"displayName":"terabytes","long":{"one":"{0} terabyte","other":"{0} terabytes"},"short":{"one":"{0} TB","other":"{0} TB"},"narrow":{"one":"{0}TB","other":"{0}TB"}},"day":{"displayName":"days","long":{"one":"{0} day","other":"{0} days"},"short":{"one":"{0} day","other":"{0} days"},"narrow":{"one":"{0}d","other":"{0}d"}},"hour":{"displayName":"hours","long":{"one":"{0} hour","other":"{0} hours"},"short":{"one":"{0} hr","other":"{0} hr"},"narrow":{"one":"{0}h","other":"{0}h"}},"millisecond":{"displayName":"milliseconds","long":{"one":"{0} millisecond","other":"{0} milliseconds"},"short":{"one":"{0} ms","other":"{0} ms"},"narrow":{"one":"{0}ms","other":"{0}ms"}},"minute":{"displayName":"minutes","long":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min","other":"{0} min"},"narrow":{"one":"{0}m","other":"{0}m"}},"month":{"displayName":"months","long":{"one":"{0} month","other":"{0} months"},"short":{"one":"{0} mth","other":"{0} mths"},"narrow":{"one":"{0}m","other":"{0}m"}},"second":{"displayName":"seconds","long":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec","other":"{0} sec"},"narrow":{"one":"{0}s","other":"{0}s"}},"week":{"displayName":"weeks","long":{"one":"{0} week","other":"{0} weeks"},"short":{"one":"{0} wk","other":"{0} wks"},"narrow":{"one":"{0}w","other":"{0}w"}},"year":{"displayName":"years","long":{"one":"{0} year","other":"{0} years"},"short":{"one":"{0} yr","other":"{0} yrs"},"narrow":{"one":"{0}y","other":"{0}y"}},"centimeter":{"displayName":"centimeters","long":{"one":"{0} centimeter","other":"{0} centimeters"},"short":{"one":"{0} cm","other":"{0} cm"},"narrow":{"one":"{0}cm","other":"{0}cm"}},"foot":{"displayName":"feet","long":{"one":"{0} foot","other":"{0} feet"},"short":{"one":"{0} ft","other":"{0} ft"},"narrow":{"one":"{0}′","other":"{0}′"}},"inch":{"displayName":"inches","long":{"one":"{0} inch","other":"{0} inches"},"short":{"one":"{0} in","other":"{0} in"},"narrow":{"one":"{0}″","other":"{0}″"}},"kilometer":{"displayName":"kilometers","long":{"one":"{0} kilometer","other":"{0} kilometers"},"short":{"one":"{0} km","other":"{0} km"},"narrow":{"one":"{0}km","other":"{0}km"}},"meter":{"displayName":"meters","long":{"one":"{0} meter","other":"{0} meters"},"short":{"one":"{0} m","other":"{0} m"},"narrow":{"one":"{0}m","other":"{0}m"}},"mile-scandinavian":{"displayName":"mile-scandinavian","long":{"one":"{0} mile-scandinavian","other":"{0} miles-scandinavian"},"short":{"one":"{0} smi","other":"{0} smi"},"narrow":{"one":"{0}smi","other":"{0}smi"}},"mile":{"displayName":"miles","long":{"one":"{0} mile","other":"{0} miles"},"short":{"one":"{0} mi","other":"{0} mi"},"narrow":{"one":"{0}mi","other":"{0}mi"}},"millimeter":{"displayName":"millimeters","long":{"one":"{0} millimeter","other":"{0} millimeters"},"short":{"one":"{0} mm","other":"{0} mm"},"narrow":{"one":"{0}mm","other":"{0}mm"}},"yard":{"displayName":"yards","long":{"one":"{0} yard","other":"{0} yards"},"short":{"one":"{0} yd","other":"{0} yd"},"narrow":{"one":"{0}yd","other":"{0}yd"}},"gram":{"displayName":"grams","long":{"one":"{0} gram","other":"{0} grams"},"short":{"one":"{0} g","other":"{0} g"},"narrow":{"one":"{0}g","other":"{0}g"}},"kilogram":{"displayName":"kilograms","long":{"one":"{0} kilogram","other":"{0} kilograms"},"short":{"one":"{0} kg","other":"{0} kg"},"narrow":{"one":"{0}kg","other":"{0}kg"}},"ounce":{"displayName":"ounces","long":{"one":"{0} ounce","other":"{0} ounces"},"short":{"one":"{0} oz","other":"{0} oz"},"narrow":{"one":"{0}oz","other":"{0}oz"}},"pound":{"displayName":"pounds","long":{"one":"{0} pound","other":"{0} pounds"},"short":{"one":"{0} lb","other":"{0} lb"},"narrow":{"one":"{0}#","other":"{0}#"}},"stone":{"displayName":"stones","long":{"one":"{0} stone","other":"{0} stones"},"short":{"one":"{0} st","other":"{0} st"},"narrow":{"one":"{0}st","other":"{0}st"}},"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°C","other":"{0}°C"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°","other":"{0}°"}},"fluid-ounce":{"displayName":"fluid ounces","long":{"one":"{0} fluid ounce","other":"{0} fluid ounces"},"short":{"one":"{0} fl oz","other":"{0} fl oz"},"narrow":{"one":"{0}fl oz","other":"{0}fl oz"}},"gallon":{"displayName":"gallons","long":{"one":"{0} gallon","other":"{0} gallons"},"short":{"one":"{0} gal","other":"{0} gal"},"narrow":{"one":"{0}gal","other":"{0}gal"}},"liter":{"displayName":"liters","long":{"one":"{0} liter","other":"{0} liters"},"short":{"one":"{0} L","other":"{0} L"},"narrow":{"one":"{0}L","other":"{0}L"}},"milliliter":{"displayName":"milliliters","long":{"one":"{0} milliliter","other":"{0} milliliters"},"short":{"one":"{0} mL","other":"{0} mL"},"narrow":{"one":"{0}mL","other":"{0}mL"}}}},{"locale":"en-150","units":{"hour":{"displayName":"hours","long":{"one":"{0} hour","other":"{0} hours"},"short":{"one":"{0} hr","other":"{0} hrs"},"narrow":{"one":"{0}h","other":"{0}h"}},"minute":{"displayName":"minutes","long":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min","other":"{0} mins"},"narrow":{"one":"{0}m","other":"{0}m"}},"second":{"displayName":"seconds","long":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec","other":"{0} secs"},"narrow":{"one":"{0}s","other":"{0}s"}},"centimeter":{"displayName":"centimetres","long":{"one":"{0} centimetre","other":"{0} centimetres"},"short":{"one":"{0} cm","other":"{0} cm"},"narrow":{"one":"{0}cm","other":"{0}cm"}},"kilometer":{"displayName":"kilometres","long":{"one":"{0} kilometre","other":"{0} kilometres"},"short":{"one":"{0} km","other":"{0} km"},"narrow":{"one":"{0}km","other":"{0}km"}},"meter":{"displayName":"metres","long":{"one":"{0} metre","other":"{0} metres"},"short":{"one":"{0} m","other":"{0} m"},"narrow":{"one":"{0}m","other":"{0}m"}},"millimeter":{"displayName":"millimetres","long":{"one":"{0} millimetre","other":"{0} millimetres"},"short":{"one":"{0} mm","other":"{0} mm"},"narrow":{"one":"{0}mm","other":"{0}mm"}},"pound":{"displayName":"pounds","long":{"one":"{0} pound","other":"{0} pounds"},"short":{"one":"{0} lb","other":"{0} lb"},"narrow":{"one":"{0}lb","other":"{0}lb"}},"stone":{"displayName":"stone","long":{"one":"{0} stone","other":"{0} stone"},"short":{"one":"{0} st","other":"{0} st"},"narrow":{"one":"{0}st","other":"{0}st"}},"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°","other":"{0}°"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°F","other":"{0}°F"}},"gallon":{"displayName":"US gallons","long":{"one":"{0} US gallon","other":"{0} US gallons"},"short":{"one":"{0} gal US","other":"{0} gal US"},"narrow":{"one":"{0}galUS","other":"{0}galUS"}},"liter":{"displayName":"litres","long":{"one":"{0} litre","other":"{0} litres"},"short":{"one":"{0} l","other":"{0} l"},"narrow":{"one":"{0}l","other":"{0}l"}},"milliliter":{"displayName":"millilitres","long":{"one":"{0} millilitre","other":"{0} millilitres"},"short":{"one":"{0} ml","other":"{0} ml"},"narrow":{"one":"{0}ml","other":"{0}ml"}}}},{"locale":"en-AU","units":{"degree":{"displayName":"degrees","long":{"one":"{0} degree","other":"{0} degrees"},"short":{"one":"{0} deg.","other":"{0} deg."},"narrow":{"one":"{0}°","other":"{0}°"}},"percent":{"displayName":"per cent","long":{"one":"{0} per cent","other":"{0} per cent"},"short":{"one":"{0}%","other":"{0}%"},"narrow":{"one":"{0}%","other":"{0}%"}},"minute":{"displayName":"minutes","long":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min.","other":"{0} min."},"narrow":{"one":"{0}min.","other":"{0}min."}},"month":{"displayName":"months","long":{"one":"{0} month","other":"{0} months"},"short":{"one":"{0} m.","other":"{0} m."},"narrow":{"one":"{0}m","other":"{0}m"}},"second":{"displayName":"seconds","long":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec.","other":"{0} sec."},"narrow":{"one":"{0}s.","other":"{0}s."}},"kilometer":{"displayName":"kilometre","long":{"one":"{0} kilometre","other":"{0} kilometres"},"short":{"one":"{0} km","other":"{0} km"},"narrow":{"one":"{0}km","other":"{0}km"}},"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°C","other":"{0}°C"}},"gallon":{"displayName":"US gallons","long":{"one":"{0} US gallon","other":"{0} US gallons"},"short":{"one":"{0} gal. US","other":"{0} gal. US"},"narrow":{"one":"{0}galUS","other":"{0}galUS"}},"liter":{"displayName":"litres","long":{"one":"{0} litre","other":"{0} litres"},"short":{"one":"{0} L","other":"{0} L"},"narrow":{"one":"{0}L","other":"{0}L"}},"milliliter":{"displayName":"millilitres","long":{"one":"{0} millilitre","other":"{0} millilitres"},"short":{"one":"{0} mL","other":"{0} mL"},"narrow":{"one":"{0}mL","other":"{0}mL"}}}},{"locale":"en-BS","units":{"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°C","other":"{0}°C"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°","other":"{0}°"}}}},{"locale":"en-BZ","units":{"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°C","other":"{0}°C"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°","other":"{0}°"}}}},{"locale":"en-CA","units":{"degree":{"displayName":"degrees","long":{"one":"{0} degree","other":"{0} degrees"},"short":{"one":"{0} deg.","other":"{0} deg."},"narrow":{"one":"{0}°","other":"{0}°"}},"acre":{"displayName":"acres","long":{"one":"{0} acre","other":"{0} acres"},"short":{"one":"{0} ac.","other":"{0} ac."},"narrow":{"one":"{0}ac","other":"{0}ac"}},"day":{"displayName":"days","long":{"one":"{0} day","other":"{0} days"},"short":{"one":"{0} day","other":"{0} days"},"narrow":{"one":"{0} d","other":"{0} d"}},"hour":{"displayName":"hours","long":{"one":"{0} hour","other":"{0} hours"},"short":{"one":"{0} hr.","other":"{0} hrs."},"narrow":{"one":"{0} h","other":"{0} h"}},"millisecond":{"displayName":"milliseconds","long":{"one":"{0} millisecond","other":"{0} milliseconds"},"short":{"one":"{0} millisec.","other":"{0} millisecs."},"narrow":{"one":"{0} msec.","other":"{0} msec."}},"minute":{"displayName":"minutes","long":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min.","other":"{0} min."},"narrow":{"one":"{0} min.","other":"{0} min."}},"month":{"displayName":"months","long":{"one":"{0} month","other":"{0} months"},"short":{"one":"{0} mo.","other":"{0} mos."},"narrow":{"one":"{0} m","other":"{0} m"}},"second":{"displayName":"seconds","long":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec.","other":"{0} secs."},"narrow":{"one":"{0} sec.","other":"{0} sec."}},"week":{"displayName":"weeks","long":{"one":"{0} week","other":"{0} weeks"},"short":{"one":"{0} wk.","other":"{0} wks."},"narrow":{"one":"{0} w","other":"{0} w"}},"year":{"displayName":"years","long":{"one":"{0} year","other":"{0} years"},"short":{"one":"{0} yr.","other":"{0} yrs."},"narrow":{"one":"{0} y","other":"{0} y"}},"foot":{"displayName":"feet","long":{"one":"{0} foot","other":"{0} feet"},"short":{"one":"{0} ft.","other":"{0} ft."},"narrow":{"one":"{0}′","other":"{0}′"}},"inch":{"displayName":"inches","long":{"one":"{0} inch","other":"{0} inches"},"short":{"one":"{0} in.","other":"{0} in."},"narrow":{"one":"{0}″","other":"{0}″"}},"mile":{"displayName":"miles","long":{"one":"{0} mile","other":"{0} miles"},"short":{"one":"{0} mi.","other":"{0} mi."},"narrow":{"one":"{0}mi","other":"{0}mi"}},"yard":{"displayName":"yards","long":{"one":"{0} yard","other":"{0} yards"},"short":{"one":"{0} yd.","other":"{0} yd."},"narrow":{"one":"{0}yd","other":"{0}yd"}},"ounce":{"displayName":"ounces","long":{"one":"{0} ounce","other":"{0} ounces"},"short":{"one":"{0} oz.","other":"{0} oz."},"narrow":{"one":"{0}oz","other":"{0}oz"}},"pound":{"displayName":"pounds","long":{"one":"{0} pound","other":"{0} pounds"},"short":{"one":"{0} lb.","other":"{0} lb."},"narrow":{"one":"{0}lb","other":"{0}lb"}},"stone":{"displayName":"stone","long":{"one":"{0} stone","other":"{0} stone"},"short":{"one":"{0} st.","other":"{0} st."},"narrow":{"one":"{0}st","other":"{0}st"}},"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0} °C","other":"{0} °C"},"narrow":{"one":"{0}°","other":"{0}°"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0} °F","other":"{0} °F"},"narrow":{"one":"{0}°F","other":"{0}°F"}},"fluid-ounce":{"displayName":"fluid ounces","long":{"one":"{0} fluid ounce","other":"{0} fluid ounces"},"short":{"one":"{0} fl. oz.","other":"{0} fl. oz."},"narrow":{"one":"{0}fl oz","other":"{0}fl oz"}},"gallon":{"displayName":"US gallons","long":{"one":"{0} US gallon","other":"{0} US gallons"},"short":{"one":"{0} US gal.","other":"{0} US gal."},"narrow":{"one":"{0}galUS","other":"{0}galUS"}},"liter":{"displayName":"litres","long":{"one":"{0} litre","other":"{0} litres"},"short":{"one":"{0} L","other":"{0} L"},"narrow":{"one":"{0}L","other":"{0}L"}},"milliliter":{"displayName":"millilitres","long":{"one":"{0} millilitre","other":"{0} millilitres"},"short":{"one":"{0} mL","other":"{0} mL"},"narrow":{"one":"{0}mL","other":"{0}mL"}}}},{"locale":"en-GB","units":{"percent":{"displayName":"per cent","long":{"one":"{0} per cent","other":"{0} per cent"},"short":{"one":"{0}%","other":"{0}%"},"narrow":{"one":"{0}%","other":"{0}%"}}}},{"locale":"en-KY","units":{"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°C","other":"{0}°C"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°","other":"{0}°"}}}},{"locale":"en-PW","units":{"celsius":{"displayName":"degrees Celsius","long":{"one":"{0} degree Celsius","other":"{0} degrees Celsius"},"short":{"one":"{0}°C","other":"{0}°C"},"narrow":{"one":"{0}°C","other":"{0}°C"}},"fahrenheit":{"displayName":"degrees Fahrenheit","long":{"one":"{0} degree Fahrenheit","other":"{0} degrees Fahrenheit"},"short":{"one":"{0}°F","other":"{0}°F"},"narrow":{"one":"{0}°","other":"{0}°"}}}}];
export default data;
SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc