node/test/fixtures/es-modules/wasm-string-constants.js
Guy Bedford 870dec25f7 esm: support top-level Wasm without package type
PR-URL: https://github.com/nodejs/node/pull/57610
Reviewed-By: Jordan Harband <ljharb@gmail.com>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
2025-04-03 19:38:40 -07:00

6 lines
163 B
JavaScript

const console = 'console';
const hello_world = 'hello world';
const log = 'log';
const prop = 'prop';
export { console, hello_world as 'hello world', log, prop }