Files
Kmake/test/fixtures/es-modules/wasm-string-constants.js
2026-05-26 23:36:42 -07:00

7 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 }