Lines Matching refs:card
19 const card = process.env.DEVICE_LEVEL === DEVICE_LEVEL.CARD constant
50 if (card) {
53 transValue = card ? `{{${transCardArray(exp.value)}}}` : content.parseExpression(exp.value)
54 if (textArray.length !== 1 && !card) {
58 transValue = card ? exp.value : `decodeURI('${encodeURI(exp.value).replace(/\'/g, '%27')}')`
62 if (card && checkCardVersionLimit() && isValue) {
71 let func = explist.join(card ? '' : connectContent);
72 if (functionFlag !== false && !card) {
75 func = card && textArray.length > 1 ? '$f(' + func + ')' : func
113 card ? `{{${text.value}}}` : content.parseExpression(text.value) :
114 card ? text.value : `'${text.value}'`
120 const value = card ? item : `'${item}'`
125 return card ? result : "(function () {return [" + result.join(", ") + "]})"