UNPKG

node-esm-hmr

Version:

HMR for Node that actually works with Node's ESM (type:module in package.json or .mjs files)

8 lines (6 loc) 150 B
export default function (a, b) { console.log('Default export', a, b); } export function namedExport(a, b) { console.log('Named export', a, b); }