mirror of
https://github.com/swc-project/swc.git
synced 2024-12-11 07:35:15 +03:00
6 lines
229 B
TypeScript
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;
|