(a: readonly string[], b: readonly string[])
| 184 | } |
| 185 | |
| 186 | function sameStringArrays(a: readonly string[], b: readonly string[]): boolean { |
| 187 | return a.length === b.length && a.every((value, index) => value === b[index]); |
| 188 | } |
| 189 | |
| 190 | type MutableCreateSessionOptions = { |
| 191 | -readonly [P in keyof CreateSessionOptions]: CreateSessionOptions[P]; |
no outgoing calls
no test coverage detected