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