package.cjs.utils.currencyFormat.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neeto-commons-frontend Show documentation
Show all versions of neeto-commons-frontend Show documentation
A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.
"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(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) { (0, _defineProperty2["default"])(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; }
var getAmountWithSymbol = function getAmountWithSymbol(amount, options) {
var formatter = new Intl.NumberFormat(_dayjs["default"].locale(), _objectSpread({}, options));
return formatter.format(Number(amount));
};
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
};
exports.currencyFormat = currencyFormat;
//# sourceMappingURL=currencyFormat.js.map