(a, b)
| 147 | |
| 148 | // Check if they have the same source and flags |
| 149 | function areSimilarRegExps(a, b) { |
| 150 | return a.source === b.source && |
| 151 | a.flags === b.flags && |
| 152 | a.lastIndex === b.lastIndex; |
| 153 | } |
| 154 | |
| 155 | function isPartialUint8Array(a, b) { |
| 156 | const lenA = getByteLength(a); |
no outgoing calls
no test coverage detected