()
| 371 | } |
| 372 | |
| 373 | func (r *NodeJSRuntime) IsAvailable() bool { |
| 374 | _, err := exec.LookPath(r.nodePath) |
| 375 | return err == nil |
| 376 | } |
| 377 | |
| 378 | func (r *NodeJSRuntime) Execute(ctx context.Context, code string, input map[string]any) (*ExecutionResult, error) { |
| 379 | start := time.Now() |
no outgoing calls