Execute JavaScript functions on the fly.
Create a new function.
POST /create-function/add
Body: {
"function": "function({ a, b }) {return a + b}"
}
Execute an existing function.
POST /execute/add
Body: {
"context": {
"a": 1,
"b": 2
}
}
Response: {
"result": 3
}