(...rest: Parameters<typeof WINDOW.fetch>)
| 110 | * Safari: resource blocked by content blocker |
| 111 | */ |
| 112 | export function fetch(...rest: Parameters<typeof WINDOW.fetch>): ReturnType<typeof WINDOW.fetch> { |
| 113 | return getNativeImplementation('fetch')(...rest); |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * Get an unwrapped `setTimeout` method. |
no test coverage detected