(ast)
| 17 | |
| 18 | // limitations under the License. |
| 19 | export const genDynamicFunction = (ast) => { |
| 20 | try { |
| 21 | const f = eval("(" + ast +")") |
| 22 | return f |
| 23 | } catch (error) { |
| 24 | return error |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | |
| 29 | export const commonInteractionEvent= (callback, data) => { |
no outgoing calls
no test coverage detected