PR-URL: https://github.com/nodejs/node/pull/42623 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
6 lines
110 B
JavaScript
6 lines
110 B
JavaScript
export async function load(url, context, next) {
|
|
return next(url, {
|
|
...context,
|
|
foo: 'bar',
|
|
});
|
|
}
|