(condition: any, a: any, b?: any)
| 67 | } |
| 68 | |
| 69 | export function iif(condition: any, a: any, b?: any): any { |
| 70 | return condition ? a : b; |
| 71 | } |
| 72 | |
| 73 | export function isPrimitive(value: any) { |
| 74 | return value !== Object(value); |
no outgoing calls
no test coverage detected