@formatjs/ecma402-abstract
Version:
A collection of implementation for ECMAScript abstract operations
15 lines (14 loc) • 481 B
JavaScript
import "../types/number.js";
import { PartitionNumberRangePattern } from "./PartitionNumberRangePattern.js";
/**
* https://tc39.es/ecma402/#sec-formatnumericrangetoparts
*/
export function FormatNumericRangeToParts(numberFormat, x, y, { getInternalSlots }) {
const parts = PartitionNumberRangePattern(numberFormat, x, y, { getInternalSlots });
return parts.map((part, index) => ({
type: part.type,
value: part.value,
source: part.source,
result: index.toString()
}));
}