(cb: Function)
| 13 | export const isDev = process.env.NODE_ENV === "development" |
| 14 | |
| 15 | export function runInBrowser(cb: Function) { |
| 16 | if (!isServer) { |
| 17 | cb() |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | const proxy = process.env.PROXY |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected