package.utils.currencyFormat.js.map 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.
{"version":3,"file":"currencyFormat.js","names":["dayjs","getAmountWithSymbol","amount","options","formatter","Intl","NumberFormat","locale","_objectSpread","format","Number","currencyFormat","withAmount","arguments","length","undefined","minimumFractionDigits","style","withSymbol","currency","withCode","concat","withSymbolAndCode"],"sources":["../../src/utils/currencyFormat.js"],"sourcesContent":["import dayjs from \"dayjs\";\n\nconst getAmountWithSymbol = (amount, options) => {\n const formatter = new Intl.NumberFormat(dayjs.locale(), {\n ...options,\n });\n\n return formatter.format(Number(amount));\n};\n\nexport const currencyFormat = {\n withAmount: (amount, options = { minimumFractionDigits: 2 }) =>\n getAmountWithSymbol(amount, {\n style: undefined,\n ...options,\n }), // 1000, { maximumFractionDigits: 1 } => 1,000.0\n withSymbol: (amount, currency, options) =>\n getAmountWithSymbol(amount, {\n ...options,\n style: \"currency\",\n currency,\n }), // 1000, \"INR\", { maximumFractionDigits: 0 } => ₹1,000\n withCode: (amount, currency, options = { minimumFractionDigits: 2 }) =>\n `${getAmountWithSymbol(amount, {\n ...options,\n style: undefined,\n })} ${currency}`, // 1000, \"USD\" => 1,000.00 USD\n withSymbolAndCode: (amount, currency, options) =>\n `${getAmountWithSymbol(amount, {\n ...options,\n style: \"currency\",\n currency,\n })} ${currency}`, // 1000, \"INR\", { maximumFractionDigits: 0 } => ₹1,000 INR\n};\n"],"mappings":";;;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,IAAMC,mBAAmB,GAAG,SAAtBA,mBAAmBA,CAAIC,MAAM,EAAEC,OAAO,EAAK;EAC/C,IAAMC,SAAS,GAAG,IAAIC,IAAI,CAACC,YAAY,CAACN,KAAK,CAACO,MAAM,EAAE,EAAAC,aAAA,KACjDL,OAAO,EACV;EAEF,OAAOC,SAAS,CAACK,MAAM,CAACC,MAAM,CAACR,MAAM,CAAC,CAAC;AACzC,CAAC;AAED,OAAO,IAAMS,cAAc,GAAG;EAC5BC,UAAU,EAAE,SAAAA,WAACV,MAAM;IAAA,IAAEC,OAAO,GAAAU,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG;MAAEG,qBAAqB,EAAE;IAAE,CAAC;IAAA,OACzDf,mBAAmB,CAACC,MAAM,EAAAM,aAAA;MACxBS,KAAK,EAAEF;IAAS,GACbZ,OAAO,EACV;EAAA;EAAE;EACNe,UAAU,EAAE,SAAAA,WAAChB,MAAM,EAAEiB,QAAQ,EAAEhB,OAAO;IAAA,OACpCF,mBAAmB,CAACC,MAAM,EAAAM,aAAA,CAAAA,aAAA,KACrBL,OAAO;MACVc,KAAK,EAAE,UAAU;MACjBE,QAAQ,EAARA;IAAQ,GACR;EAAA;EAAE;EACNC,QAAQ,EAAE,SAAAA,SAAClB,MAAM,EAAEiB,QAAQ;IAAA,IAAEhB,OAAO,GAAAU,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG;MAAEG,qBAAqB,EAAE;IAAE,CAAC;IAAA,UAAAK,MAAA,CAC9DpB,mBAAmB,CAACC,MAAM,EAAAM,aAAA,CAAAA,aAAA,KACxBL,OAAO;MACVc,KAAK,EAAEF;IAAS,GAChB,OAAAM,MAAA,CAAIF,QAAQ;EAAA,CAAE;EAAE;EACpBG,iBAAiB,EAAE,SAAAA,kBAACpB,MAAM,EAAEiB,QAAQ,EAAEhB,OAAO;IAAA,UAAAkB,MAAA,CACxCpB,mBAAmB,CAACC,MAAM,EAAAM,aAAA,CAAAA,aAAA,KACxBL,OAAO;MACVc,KAAK,EAAE,UAAU;MACjBE,QAAQ,EAARA;IAAQ,GACR,OAAAE,MAAA,CAAIF,QAAQ;EAAA,CAAE,CAAE;AACtB,CAAC"}