swc/crates/swc_ecma_parser/tests/tsc/numberFormatCurrencySignResolved.ts
2022-02-04 17:08:38 +09:00

6 lines
229 B
TypeScript

// @target: esnext
// @lib: esnext
// @strict: true
const options = new Intl.NumberFormat('en-NZ', { style: 'currency', currency: 'NZD', currencySign: 'accounting' }).resolvedOptions();
const currencySign = options.currencySign;