UNPKG

@myorders/ember-ui

Version:

Myorders UI provides all the interface components, helpers, services and utilities for building a Myorders extension into the Console.

7 lines (5 loc) 251 B
import { helper } from '@ember/component/helper'; import formatCurrencyUtil from '../utils/format-currency'; export default helper(function formatCurrency([amount = 0, currencyCode = 'USD']) { return formatCurrencyUtil(amount, currencyCode); });