()
| 5 | const MULTI_KEYS = ["designer", "license", "parentModel", "tags"]; |
| 6 | |
| 7 | function initState() { |
| 8 | if (!window.multiFilterChips) { |
| 9 | window.multiFilterChips = { designer: [], license: [], parentModel: [], tags: [] }; |
| 10 | } |
| 11 | if (!window.multiFilterCombine) { |
| 12 | window.multiFilterCombine = { designer: "OR", license: "OR", parentModel: "OR", tags: "AND" }; |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | function getCombine(kind) { |
| 17 | initState(); |
no outgoing calls
no test coverage detected