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