mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
7730a6ea5a
swc_ecma_transforms_compat: - `async_to_generator`: Handle await in async generators correctly. (#1752) swc_ecma_transforms_module: - Don't panic on double import from one module. (#1757)
4 lines
96 B
JavaScript
4 lines
96 B
JavaScript
import "testlibrary";
|
|
import { aFunc } from "testlibrary";
|
|
|
|
console.log("aFunc: ", aFunc(1, 2)); |