Files
Kmake/test/fixtures/source-map/babel-esm-original.mjs
2026-05-26 23:36:42 -07:00

10 lines
126 B
JavaScript

import {foo} from './esm-dep.mjs';
const obj = {
a: {
b: 22
}
};
if (obj?.a?.b === 22) throw Error('an exception');