PR-URL: https://github.com/nodejs/node/pull/43784 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
7 lines
180 B
JavaScript
7 lines
180 B
JavaScript
export function resolve(specifier, context, next) {
|
|
if (specifier === 'unknown-builtin-module') return {
|
|
url: 'node:unknown-builtin-module'
|
|
};
|
|
|
|
return next(specifier);
|
|
}
|