node/test/fixtures/es-module-loaders/loader-load-next-modified.mjs

12 lines
161 B
JavaScript

export async function load(url, context, next) {
const {
format,
source,
} = await next(url);
return {
format,
source: source + 1,
};
}