(value: ExpressionLike)
| 244 | } |
| 245 | |
| 246 | export function not(value: ExpressionLike): BasicExpression<boolean> { |
| 247 | return new Func(`not`, [toExpression(value)]) |
| 248 | } |
| 249 | |
| 250 | // Null/undefined checking functions |
| 251 | export function isUndefined(value: ExpressionLike): BasicExpression<boolean> { |
no test coverage detected