mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
swc: - Ensure that #2281 is fixed. (#2281) wasm: - Fix `baseUrl` and `paths` support. - Apply `hygiene` pass.
9 lines
136 B
JavaScript
9 lines
136 B
JavaScript
import { func1 } from "./src/func";
|
|
|
|
console.log(func1);
|
|
|
|
function something({ func = 0 }) {
|
|
const haha = false;
|
|
|
|
return func;
|
|
} |