(a, b)
| 6136 | return true; |
| 6137 | } |
| 6138 | function compare(a, b) { |
| 6139 | if (a == b) return true; |
| 6140 | if (!a || !b) return false; |
| 6141 | let arrs = [ |
| 6142 | a, |
| 6143 | b |
| 6144 | ].map((0, _group.ensureSearchExpressionGroupArray)); |
| 6145 | let [arrA, arrB] = arrs; |
| 6146 | if (arrA.length != arrB.length) return false; |
| 6147 | for(let i = 0; i < arrA.length; i++){ |
| 6148 | if (!compareGroup(arrA[i], arrB[i])) return false; |
| 6149 | } |
| 6150 | return true; |
| 6151 | } |
| 6152 | function startsWith(whole, part) { |
| 6153 | if (!part) return true; |
| 6154 | let arrs = [ |
no test coverage detected