Skip to content

Commit d50355d

Browse files
committed
Enable new options in CI example
1 parent 0350515 commit d50355d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/src/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,10 @@ const tbody = document.createElement('tbody')!;
135135

136136
for (const s of strings) {
137137
const tr = document.createElement('tr');
138-
const result = numericQuantity(s);
138+
const result = numericQuantity(s, {
139+
romanNumerals: true,
140+
allowTrailingInvalid: true,
141+
});
139142
tr.innerHTML = `<td>numericQuantity("${s}")</td><td>${result}</td>`;
140143
tbody.appendChild(tr);
141144
}

0 commit comments

Comments
 (0)