Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/sale/checkout/lib/src/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/sale/checkout/lib/src/product.js

import {Product as ProductConst} from "sale.checkout.const";

class Product
{
	static isService(item)
	{
		return item.product.type === ProductConst.type.service;
	}

	static isLimitedQuantity(item)
	{
		return item.product.checkMaxQuantity === 'Y'
	}
}

export {
	Product
}