(value: ExpressionLike)
| 249 | |
| 250 | // Null/undefined checking functions |
| 251 | export function isUndefined(value: ExpressionLike): BasicExpression<boolean> { |
| 252 | return new Func(`isUndefined`, [toExpression(value)]) |
| 253 | } |
| 254 | |
| 255 | export function isNull(value: ExpressionLike): BasicExpression<boolean> { |
| 256 | return new Func(`isNull`, [toExpression(value)]) |
searching dependent graphs…