node/test/fixtures/es-module-loaders/loader-load-passthru.mjs
João Lenon a40a6c890a
module: implement register utility
PR-URL: https://github.com/nodejs/node/pull/46826
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
2023-06-12 00:00:46 +00:00

14 lines
529 B
JavaScript

import { writeSync } from 'node:fs';
export async function load(url, context, next) {
// This check is needed to make sure that we don't prevent the
// resolution from follow-up loaders. It wouldn't be a problem
// in real life because loaders aren't supposed to break the
// resolution, but the ones used in our tests do, for convenience.
if (url === 'node:fs' || url.includes('loader')) {
return next(url);
}
writeSync(1, 'load passthru' + '\n'); // Signal that this specific hook ran
return next(url);
}