0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-28 22:46:31 +01:00
nodejs/test/es-module/test-require-module-detect-entry-point-aou.js

8 lines
181 B
JavaScript
Raw Normal View History

// Flags: --experimental-require-module --abort-on-uncaught-exception
import { mustCall } from '../common/index.mjs';
const fn = mustCall(() => {
console.log('hello');
});
fn();