node/test/fixtures/es-module-loaders/loader-this-value-inside-hook-functions.mjs
Geoffrey Booth 479a50c7e9
test: isolate globalPreload tests
PR-URL: https://github.com/nodejs/node/pull/49545
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
2023-09-09 23:02:21 +00:00

22 lines
461 B
JavaScript

export function initialize() {
if (this != null) {
throw new Error('hook function must not be bound to loader instance');
}
}
export function resolve(url, _, next) {
if (this != null) {
throw new Error('hook function must not be bound to loader instance');
}
return next(url);
}
export function load(url, _, next) {
if (this != null) {
throw new Error('hook function must not be bound to loader instance');
}
return next(url);
}