(value: any)
| 6 | } |
| 7 | |
| 8 | export function isFirebaseDataSnapshot(value: any): boolean { |
| 9 | return typeof value.exportVal === 'function'; |
| 10 | } |
| 11 | |
| 12 | export function isNil(obj: any): boolean { |
| 13 | return obj === undefined || obj === null; |
no outgoing calls
no test coverage detected