node/test/fixtures/es-module-loaders/loader-load-bad-next-context.mjs
Jacob Smith d859e9e997
esm: add chaining to loaders
PR-URL: https://github.com/nodejs/node/pull/42623
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
2022-05-04 16:51:12 +01:00

3 lines
75 B
JavaScript

export async function load(url, context, next) {
return next(url, []);
}