Quality gate blocked
- In the queue, the review has not yet begun
Coupon stacking rules
hanshop-mobilefeat/coupon-stackLin Xi · 2026-06-05 15:20src/coupon/stackRule.ts+3−0
1+export function canStack(a: Coupon, b: Coupon) {
2+ return a.stackable && b.stackable;
3+}