(modulePath: string)
| 359 | |
| 360 | // unstable as it should be replaced by https://github.com/nodejs/modules/issues/393, and we don't want people to use it |
| 361 | unstable_shouldLoadAsEsm(modulePath: string): boolean { |
| 362 | return this._resolution.shouldLoadAsEsm(modulePath); |
| 363 | } |
| 364 | |
| 365 | async unstable_importModule( |
| 366 | from: string, |
no test coverage detected