(obj: T | undefined | null)
| 33 | } |
| 34 | |
| 35 | export function hasValue<T>(obj: T | undefined | null): obj is T { |
| 36 | return obj !== undefined && obj !== null; |
| 37 | } |
| 38 | |
| 39 | export function customCamelCaseGraphqlKey(str: string) { |
| 40 | return str |
no outgoing calls
no test coverage detected