(
path: string, requestInit?: RequestInit,
weightPathPrefix?: string)
| 26 | * @param weightPathPrefix A path prefix for weight loading . (Optional). |
| 27 | */ |
| 28 | export function nodeHTTPRequest( |
| 29 | path: string, requestInit?: RequestInit, |
| 30 | weightPathPrefix?: string): io.IOHandler { |
| 31 | return io.browserHTTPRequest(path, {requestInit, weightPathPrefix}); |
| 32 | } |
| 33 | |
| 34 | export const nodeHTTPRequestRouter = (url: string) => { |
| 35 | let isHTTP = true; |
no outgoing calls
no test coverage detected
searching dependent graphs…