This website requires JavaScript.
Explore
Help
Register
Sign In
daohualiuxiang
/
node
mirror of
https://github.com/nodejs/node.git
Watch
1
Star
0
Fork
You've already forked node
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
24ed8da48e
node
/
test
/
fixtures
/
es-module-loaders
/
loader-load-impersonating-n...
4 lines
79 B
JavaScript
Raw
Normal View
History
Unescape
Escape
esm: add chaining to loaders PR-URL: https://github.com/nodejs/node/pull/42623 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
2022-05-04 23:51:12 +08:00
export
async
function
load
(
url
,
context
,
next
)
{
test: refactor ESM tests to improve performance PR-URL: https://github.com/nodejs/node/pull/43784 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
2022-07-29 16:42:55 +08:00
return
next
(
'not/a/url'
)
;
esm: add chaining to loaders PR-URL: https://github.com/nodejs/node/pull/42623 Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
2022-05-04 23:51:12 +08:00
}