6 lines
130 B
XML
6 lines
130 B
XML
var hasPromotion = function (code) {
|
|
return code && code !== 'EMPTY_PROMOTION';
|
|
};
|
|
|
|
module.exports.hasPromotion = hasPromotion;
|