yiming
2024-02-28 4cf55474ff49d11150dfaca3633224eceea47823
1
2
3
4
5
var hasPromotion = function (code) {
  return code && code !== 'EMPTY_PROMOTION';
};
 
module.exports.hasPromotion = hasPromotion;