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

package.cjs.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
"use strict";

var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.currencyFormat = void 0;
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
var _dayjs = _interopRequireDefault(require("dayjs"));
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2["default"])(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
var getAmountWithSymbol = function getAmountWithSymbol(amount, options) {
  var formatter = new Intl.NumberFormat(_dayjs["default"].locale(), _objectSpread({}, options));
  return formatter.format(Number(amount));
};
var currencyFormat = exports.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