This website requires JavaScript.
Explore
Help
Sign in
foster
/
denoland-deno
Watch
1
Star
0
Fork
You've already forked denoland-deno
0
mirror of
https://github.com/denoland/deno.git
synced
2024-11-15 16:43:44 -05:00
Code
Issues
Wiki
Activity
daad575825
denoland-deno
/
cli
/
tests
/
bundle
/
fixture10.out
7 lines
88 B
Text
Raw
Normal View
History
Unescape
Escape
chore: update crates (#9251) Updates SWC, dprint, deno_lint, deno_doc, serde, and Tokio (to 1.1.0). Co-authored-by: Kitson Kelly <me@kitsonkelly.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2021-01-26 11:00:40 -05:00
const a = "a";
const a1 = a;
feat(cli): add support for bundle --no-check (#8023) Fixes #6686
2020-10-19 23:10:42 -04:00
const o = {
};
chore: update crates (#9251) Updates SWC, dprint, deno_lint, deno_doc, serde, and Tokio (to 1.1.0). Co-authored-by: Kitson Kelly <me@kitsonkelly.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2021-01-26 11:00:40 -05:00
const { a: a2 = a1 } = o;
console.log(a2);
Copy permalink