Skip to content

Commit

Permalink
update test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhauhau committed Jul 28, 2019
1 parent a1724dd commit 4fad08d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
@@ -1,9 +1,8 @@
import "core-js/modules/es7.string.pad-end";
import "core-js/modules/es7.string.pad-start";

for (const _ref of foo) {
const {
padStart
} = _ref;
for (const {
padStart
} of foo) {
console.log('b'.padEnd(5));
}
Expand Up @@ -2,9 +2,8 @@ import "core-js/modules/es.array.iterator";
import "core-js/modules/es.string.pad-end";
import "core-js/modules/es.string.pad-start";

for (const _ref of foo) {
const {
padStart
} = _ref;
for (const {
padStart
} of foo) {
console.log('b'.padEnd(5));
}

0 comments on commit 4fad08d

Please sign in to comment.