(array: Array<T>, index: number, value: T)
| 15 | } |
| 16 | |
| 17 | function replaceAt<T>(array: Array<T>, index: number, value: T): Array<T> { |
| 18 | const copy = array.slice(0) |
| 19 | copy[index] = value |
| 20 | return copy |
| 21 | } |
| 22 | |
| 23 | type QueriesObserverListener = (result: Array<QueryObserverResult>) => void |
| 24 |
no outgoing calls
no test coverage detected
searching dependent graphs…