mirror of https://github.com/nodejs/node.git
6 lines
71 B
JavaScript
6 lines
71 B
JavaScript
|
function load(id) {
|
||
|
return import(id);
|
||
|
}
|
||
|
|
||
|
export { load as import };
|