# give/4.16.9/src/Admin/common/amountFormatter.ts

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 14 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Admin/common/amountFormatter.ts
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Admin/common/amountFormatter.ts
- Modified: 2025-10-01T11:37:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/Admin/common/amountFormatter.ts#L10-L20`.

```typescript
/**
 * @since 4.0.0
 */
export function amountFormatter(
    currency: Intl.NumberFormatOptions['currency'],
    options?: Intl.NumberFormatOptions
): Intl.NumberFormat {
    return new Intl.NumberFormat(navigator.language, {
        style: 'currency',
        currency: currency,
        ...options,
    });
}

```
