(a: any)
| 16 | import { applyTransformations } from '@/transformers'; |
| 17 | |
| 18 | export const isUndefinedOrNull = (a: any) => { |
| 19 | return a === null || a === undefined; |
| 20 | }; |
| 21 | |
| 22 | export const isPresent = (a: any) => !isUndefinedOrNull(a); |
| 23 |
no outgoing calls
no test coverage detected