(...args: unknown[])
| 216 | }, |
| 217 | |
| 218 | toSpliced(...args: unknown[]) { |
| 219 | // @ts-expect-error user code may run in es2016+ |
| 220 | return (reactiveReadArray(this).toSpliced as any)(...args) |
| 221 | }, |
| 222 | |
| 223 | unshift(...args: unknown[]) { |
| 224 | return noTracking(this, 'unshift', args) |
nothing calls this directly
no test coverage detected