All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.utils.currencyFormat.js Maven / Gradle / Ivy

Go to download

A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.

There is a newer version: 4.12.3
Show newest version
import _defineProperty from "@babel/runtime/helpers/defineProperty";
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
import dayjs from "dayjs";
var getAmountWithSymbol = function getAmountWithSymbol(amount, options) {
  var formatter = new Intl.NumberFormat(dayjs.locale(), _objectSpread({}, options));
  return formatter.format(Number(amount));
};
export var currencyFormat = {
  withAmount: function withAmount(amount) {
    var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {
      minimumFractionDigits: 2
    };
    return getAmountWithSymbol(amount, _objectSpread({
      style: undefined
    }, options));
  },
  // 1000, { maximumFractionDigits: 1 } => 1,000.0
  withSymbol: function withSymbol(amount, currency, options) {
    return getAmountWithSymbol(amount, _objectSpread(_objectSpread({}, options), {}, {
      style: "currency",
      currency: currency
    }));
  },
  // 1000, "INR", { maximumFractionDigits: 0 } => ₹1,000
  withCode: function withCode(amount, currency) {
    var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {
      minimumFractionDigits: 2
    };
    return "".concat(getAmountWithSymbol(amount, _objectSpread(_objectSpread({}, options), {}, {
      style: undefined
    })), " ").concat(currency);
  },
  // 1000, "USD" => 1,000.00 USD
  withSymbolAndCode: function withSymbolAndCode(amount, currency, options) {
    return "".concat(getAmountWithSymbol(amount, _objectSpread(_objectSpread({}, options), {}, {
      style: "currency",
      currency: currency
    })), " ").concat(currency);
  } // 1000, "INR", { maximumFractionDigits: 0 } => ₹1,000 INR
};
//# sourceMappingURL=currencyFormat.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy