mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
447635b440
PR-URL: https://github.com/nodejs/node/pull/43784 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
12 lines
161 B
JavaScript
12 lines
161 B
JavaScript
export async function load(url, context, next) {
|
|
const {
|
|
format,
|
|
source,
|
|
} = await next(url);
|
|
|
|
return {
|
|
format,
|
|
source: source + 1,
|
|
};
|
|
}
|