(value: any)
| 2 | import { DatabaseReference, FirebaseOperation, FirebaseOperationCases, PathReference } from './interfaces'; |
| 3 | |
| 4 | export function isString(value: any): boolean { |
| 5 | return typeof value === 'string'; |
| 6 | } |
| 7 | |
| 8 | export function isFirebaseDataSnapshot(value: any): boolean { |
| 9 | return typeof value.exportVal === 'function'; |
no outgoing calls
no test coverage detected