We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0350515 commit d50355dCopy full SHA for d50355d
ci/src/index.ts
@@ -135,7 +135,10 @@ const tbody = document.createElement('tbody')!;
135
136
for (const s of strings) {
137
const tr = document.createElement('tr');
138
- const result = numericQuantity(s);
+ const result = numericQuantity(s, {
139
+ romanNumerals: true,
140
+ allowTrailingInvalid: true,
141
+ });
142
tr.innerHTML = `<td>numericQuantity("${s}")</td><td>${result}</td>`;
143
tbody.appendChild(tr);
144
}
0 commit comments