* One key-value pair per HTTP Header. Since we need to support both browsers * and Node, we won't use the native Headers object here.
| 15 | * and Node, we won't use the native Headers object here. |
| 16 | */ |
| 17 | interface HeadersObject { |
| 18 | [key: string]: string; |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * Fetches and Parses a Resource. Can fetch through another atomic server if you |
nothing calls this directly
no outgoing calls
no test coverage detected