Files
Kmake/test/es-module/test-require-module-detect-entry-point.js
2026-05-26 23:36:42 -07:00

8 lines
151 B
JavaScript

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