(code, argumentNames = [])
| 18 | * @param {string[]} argumentNames List of argument-names. |
| 19 | */ |
| 20 | export default function functionFromString(code, argumentNames = []) { |
| 21 | return new EvalFunction(...argumentNames, code); |
| 22 | } |
no outgoing calls
no test coverage detected