(parentContext: object, context: object)
| 202 | export function createContext<T extends object>(parentContext: null, context: T): T; |
| 203 | export function createContext<T extends object, P extends T>(parentContext: P, context: T): P & T; |
| 204 | export function createContext(parentContext: object, context: object) { |
| 205 | return Object.assign(Object.create(parentContext), context); |
| 206 | } |
no outgoing calls
no test coverage detected