| Current Path : /var/www/homesaver/www/bitrix/modules/sale/install/js/sale/checkout/lib/src/ |
| Current File : /var/www/homesaver/www/bitrix/modules/sale/install/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
}