(obj: any)
| 10 | } |
| 11 | |
| 12 | export function isNil(obj: any): boolean { |
| 13 | return obj === undefined || obj === null; |
| 14 | } |
| 15 | |
| 16 | export function isFirebaseRef(value: any): boolean { |
| 17 | return typeof value.set === 'function'; |
no outgoing calls
no test coverage detected