(code, options)
| 312 | } |
| 313 | |
| 314 | function runInThisContext(code, options) { |
| 315 | if (typeof options === 'string') { |
| 316 | options = { filename: options }; |
| 317 | } |
| 318 | return createScript(code, options).runInThisContext(options); |
| 319 | } |
| 320 | |
| 321 | function compileFunction(code, params, options = kEmptyObject) { |
| 322 | validateString(code, 'code'); |
no test coverage detected
searching dependent graphs…