UNPKG

voucher-validator

Version:

This lib provide validator to check business rules for a voucher

11 lines 341 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function GetDiscount(voucher) { if (voucher.quantidadeDesconto > 100) return 100; if (voucher.quantidadeDesconto < 0) return 0; return voucher.quantidadeDesconto; } exports.default = GetDiscount; //# sourceMappingURL=get-discount.js.map