| 1 | import {HTTPSource, RequestOptions, RequestInput} from './interfaces'; |
| 2 | |
| 3 | export interface Mappable<T> { |
| 4 | map<R>(project: (x: T) => R): Mappable<R>; |
| 5 | } |
| 6 | |
| 7 | export function isolateSource(httpSource: HTTPSource, scope: string): HTTPSource { |
| 8 | return httpSource.filter((request: RequestOptions) => |
no outgoing calls
no test coverage detected