(target, count)
| 22092 | return hasProps ? serialized.join("") : undefined; |
| 22093 | } |
| 22094 | function repeatString(target, count) { |
| 22095 | if (count <= 0) return ""; |
| 22096 | if (count === 1) return target; |
| 22097 | return target + repeatString(target, count - 1); |
| 22098 | } |
| 22099 | function serializeRuleEntries(options, ruleEntries) { |
| 22100 | if (!ruleEntries) return ""; |
| 22101 | var allEntries = []; |