(...args: unknown[])
| 47 | }, |
| 48 | |
| 49 | concat(...args: unknown[]) { |
| 50 | return reactiveReadArray(this).concat( |
| 51 | ...args.map(x => (isArray(x) ? reactiveReadArray(x) : x)), |
| 52 | ) |
| 53 | }, |
| 54 | |
| 55 | entries() { |
| 56 | return iterator(this, 'entries', (value: [number, unknown]) => { |
nothing calls this directly
no test coverage detected