node/test/fixtures/es-module-loaders/loader-load-receiving-modif...

8 lines
203 B
JavaScript

import { writeSync } from 'node:fs';
export async function load(url, context, next) {
writeSync(1, context.foo + '\n'); // Expose actual value the hook was called with
return next(url, context);
}