(arrays: T[][], deep?: boolean)
| 888 | } |
| 889 | |
| 890 | static flatten<T>(arrays: T[][], deep?: boolean): T[] { |
| 891 | return arrays.flatMap(v => (deep && Array.isArray(v) ? this.flatten(v as unknown as T[][], true) : v)); |
| 892 | } |
| 893 | |
| 894 | static isOperator(key: PropertyKey, includeGroupOperators = true): boolean { |
| 895 | if (!includeGroupOperators) { |
no outgoing calls
no test coverage detected