mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 00:52:29 +03:00
1b9584cfc0
swc_ecma_transforms_compat: - Fix optional chaining. (#2063) node/swc: - Fix definition of `ImportDeclaration`. (#2059) testing: - Allow using `testing` with stable `rustc`. testing_macros: - Add `#[inline(never)]`.
8 lines
194 B
JavaScript
8 lines
194 B
JavaScript
var _value, ref;
|
|
var myVar = {
|
|
target: {
|
|
value: "ABC"
|
|
}
|
|
};
|
|
console.log((ref = (_value = myVar.target.value).toLowerCase) === null || ref === void 0 ? void 0 : ref.call(_value));
|