| 5 | module.exports = exports; |
| 6 | |
| 7 | const requireFunc = path => { |
| 8 | if (path === 'tslib') { |
| 9 | return loadRootModule(jsEvaluator, `valdi_core/src/tslib`); |
| 10 | } else { |
| 11 | throw new Error(`Invalid root module ${path}`); |
| 12 | } |
| 13 | }; |
| 14 | |
| 15 | jsEvaluator(path, requireFunc, module, exports); |
| 16 |
nothing calls this directly
no test coverage detected