(
path: string, requestInits?: RequestInit)
| 103 | * @doc {heading: 'Util'} |
| 104 | */ |
| 105 | export function fetch( |
| 106 | path: string, requestInits?: RequestInit): Promise<Response> { |
| 107 | return env().platform.fetch(path, requestInits); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Encodes the provided string into bytes using the provided encoding scheme. |
no test coverage detected
searching dependent graphs…