(array)
| 328 | }, |
| 329 | crypto: { |
| 330 | getRandomValues(array) { |
| 331 | for (let i = 0; i < array.length; i += 1) { |
| 332 | array[i] = (i * 17 + 29) % 256; |
| 333 | } |
| 334 | return array; |
| 335 | }, |
| 336 | }, |
| 337 | XMLHttpRequest: XMLHttpRequestStub, |
| 338 | Image: function Image() { |
nothing calls this directly
no outgoing calls
no test coverage detected