@barchart/common-js
Version:
Library of common JavaScript utilities
96 lines (83 loc) • 1.66 kB
JavaScript
const assert = require('./assert'),
is = require('./is');
const Decimal = require('./Decimal'),
Currency = require('./Currency');
module.exports = (() => {
'use strict';
/**
* A structure for storing money amounts.
*
* @public
* @param {Decimal|Number|String} - A amount, which can be parsed as a {@link Decimal}
* @param {Currency} - The currency.
*/
class Money {
constructor(value, currency) {
assert.argumentIsRequired(currency, 'currency', Currency, 'Currency');
this._decimal = getDecimal(value);
this._currency = currency;
}
/**
* The currency amount.
*
* @public
* @returns {Decimal}
*/
get decimal() {
return this._decimal;
}
/**
* The currency.
*
* @public
* @returns {Currency}
*/
get currency() {
return this._currency;
}
toAmount(places, mode) {
return new Money(this._decimal.round(getPlaces(places), mode), this._currency);
}
/**
* Returns the JSON representation.
*
* @public
* @returns {Object}
*/
toJSON() {
return {
decimal: this._decimal,
currency: this._currency
};
}
/**
* Parses the value emitted by {@link Decimal#toJSON}.
*
* @public
* @static
* @param {Object} value
* @returns {Money}
*/
static parse(value) {
return new Money(value.decimal, value.currency);
}
toString() {
return `[Money]`;
}
}
function getDecimal(value) {
if (value instanceof Decimal) {
return value;
} else {
return new Decimal(value);
}
}
function getPlaces(value) {
if (is.integer(value) && !(value < 0)) {
return value;
} else {
return 2;
}
}
return Money;
})();