(name: string)
| 221 | |
| 222 | /** Check if a name is a reserved statement call (Query, Mutation) */ |
| 223 | export function isReservedCall(name: string): boolean { |
| 224 | return name in RESERVED_CALLS; |
| 225 | } |
| 226 | |
| 227 | /** Re-export toNumber for evaluator compatibility */ |
| 228 | export { toNumber }; |
no outgoing calls
no test coverage detected