Your IP : 3.145.42.128


Current Path : /var/www/axolotl/data/www/axolotl.ru/www/bitrix/js/currency/currency-core/src/
Upload File :
Current File : /var/www/axolotl/data/www/axolotl.ru/www/bitrix/js/currency/currency-core/src/currency-item.js

// @flow
export class CurrencyItem
{
	#currency = '';
	#format = {};

	constructor(currency: string, format: {})
	{
		this.#currency = currency;
		this.#format = format;
	}

	getCurrency(): string
	{
		return this.#currency;
	}

	getFormat(): {}
	{
		return this.#format;
	}

	setFormat(format: {}): void
	{
		this.#format = format;
	}
}