mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
19 lines
466 B
JavaScript
19 lines
466 B
JavaScript
import {helper} from '@ember/component/helper';
|
|
|
|
export function ghPriceAmount(amount) {
|
|
if (amount) {
|
|
let price = amount / 100;
|
|
if (price % 1 === 0) {
|
|
return price;
|
|
} else {
|
|
return (Math.round(price * 100) / 100).toFixed(2);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
// like {{pluralize}} but formats the number according to current locale
|
|
export default helper(function ([amount]) {
|
|
return ghPriceAmount(amount);
|
|
});
|