mirror of https://github.com/nodejs/node.git
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
|
export async function resolve(specifier, context, next) {
|
||
|
return next(specifier, context, 'resolve-extra-arg');
|
||
|
}
|
||
|
|
||
|
export async function load(url, context, next) {
|
||
|
return next(url, context, 'load-extra-arg');
|
||
|
}
|