Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/toolkit/content/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 29 kB image not shown  

Quellcode-Bibliothek supportedValuesOf-unit.js   Sprache: unbekannt

 
// |reftest| skip-if(!this.hasOwnProperty("Intl"))

const units = Intl.supportedValuesOf("unit");

assertEq(new Set(units).size, units.length, "No duplicates are present");
assertEqArray(units, [...units].sort(), "The list is sorted");

const unitRE = /^[a-z]+(-[a-z]+)*$/;
for (let unit of units) {
  assertEq(unitRE.test(unit), true, `${unit} is ASCII lower-case, separated by hyphens`);
  assertEq(unit.includes("-per-"), false, `${unit} is a simple unit identifier`);
}

for (let unit of units) {
  let obj = new Intl.NumberFormat("en", {style: "unit", unit});
  assertEq(obj.resolvedOptions().unit, unit, `${unit} is supported by NumberFormat`);
}

if (typeof reportCompare === "function")
  reportCompare(truetrue);

Messung V0.5
C=92 H=98 G=94

[ 0.15Quellennavigators  Projekt   ]