Money

Importing the Money class

1import { Money } from "@ardenthq/sdk-intl";

Get the amount in cents

1Money.make(5000, "EUR").getAmount();

Format the given number with a currency symbol as suffix for the given locale

1Money.make(5000, "EUR").setLocale("de-DE").format();

Add a given amount in cents

1Money.make(5000, "EUR").plus(Money.make(1000, "EUR")).getAmount();

Subtract a given amount in cents

1Money.make(5000, "EUR").minus(Money.make(1000, "EUR")).getAmount();

Multiply the amount

1Money.make(5000, "EUR").times(10).getAmount();

Divide the amount

1Money.make(5000, "EUR").divide(10).getAmount();

Check if the actual and expected amount are equal

1Money.make(5000, "EUR").isEqualTo(Money.make(5000, "EUR"));
2Money.make(5000, "EUR").isEqualTo(Money.make(1000, "EUR"));

Check if the actual amount is less than the expected amount

1Money.make(5000, "EUR").isLessThan(Money.make(6000, "EUR"));
2Money.make(5000, "EUR").isLessThan(Money.make(5000, "EUR"));
3Money.make(5000, "EUR").isLessThan(Money.make(4000, "EUR"));

Check if the actual amount is less than or equal to the expected amount

1Money.make(5000, "EUR").isLessThanOrEqual(Money.make(5000, "EUR"));
2Money.make(5000, "EUR").isLessThanOrEqual(Money.make(6000, "EUR"));
3Money.make(5000, "EUR").isLessThanOrEqual(Money.make(4000, "EUR"));

Check if the actual amount is greater than the expected amount

1Money.make(5000, "EUR").isGreaterThan(Money.make(1000, "EUR"));
2Money.make(5000, "EUR").isGreaterThan(Money.make(1000, "EUR"));
3Money.make(5000, "EUR").isGreaterThan(Money.make(6000, "EUR"));

Check if the actual amount is greater than or equal to the expected amount

1Money.make(5000, "EUR").isGreaterThanOrEqual(Money.make(1000, "EUR"));
2Money.make(5000, "EUR").isGreaterThanOrEqual(Money.make(1000, "EUR"));
3Money.make(5000, "EUR").isGreaterThanOrEqual(Money.make(6000, "EUR"));

Check if the amount is positive

1Money.make(1, "EUR").isPositive();
2Money.make(-1, "EUR").isPositive();

Check if the amount is negative

1Money.make(-1, "EUR").isNegative();
2Money.make(1, "EUR").isNegative();

Get the currency symbol

1Money.make(5000, "EUR").getCurrency();

Format the given number with a currency symbol as suffix

1Money.make(5000, "EUR").format();

Return the amount in its human-readable representation

1Money.make(5000, "EUR").toUnit();
Last updated 1 year ago
Edit Page
Share: