(object: CELExpr["exprKind"])
| 137 | }; |
| 138 | |
| 139 | const wrapCELExpr = (object: CELExpr["exprKind"]): CELExpr => { |
| 140 | return create(ExprSchema, { |
| 141 | id: BigInt(seq.next()), |
| 142 | exprKind: object, |
| 143 | }); |
| 144 | }; |
| 145 | |
| 146 | const wrapConstExpr = (value: number | string | boolean | Date): CELExpr => { |
| 147 | if (typeof value === "string") { |
no outgoing calls
no test coverage detected