Skip to content

Commit

Permalink
test: babel-preset-env: update fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed May 26, 2023
1 parent d6c01d3 commit 961233c
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,8 +1,8 @@
((a, {
b: _b = 0,
c: _c = 3
c = 3
}) => {
return a === 1 && _b === 2 && _c === 3;
return a === 1 && _b === 2 && c === 3;
})(1, {
b: 2
});

0 comments on commit 961233c

Please sign in to comment.