Skip to content

Commit

Permalink
Replace es.string.reverse with es.array.reverse (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoarrais committed Mar 18, 2020
1 parent e39a27f commit 5e44f01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Expand Up @@ -10,6 +10,7 @@ e.padStart.apply(); // .apply
f.padEnd.call(); // .call
String.prototype.startsWith.call; // prototype.call
var { codePointAt, endsWith } = k; // destructuring
g.reverse();

var asdf = "copyWithin";
var asdf2 = "split";
Expand Down
Expand Up @@ -14,6 +14,7 @@ import "core-js/modules/es.string.pad-end";
import "core-js/modules/es.string.starts-with";
import "core-js/modules/es.string.code-point-at";
import "core-js/modules/es.string.ends-with";
import "core-js/modules/es.array.reverse";
import "core-js/modules/es.array.copy-within";
import "core-js/modules/es.string.search";
import "core-js/modules/es.regexp.exec";
Expand Down Expand Up @@ -43,6 +44,7 @@ var {
endsWith
} = k; // destructuring

g.reverse();
var asdf = "copyWithin";
var asdf2 = "split";
var asdf3 = "re" + "place";
Expand Down

0 comments on commit 5e44f01

Please sign in to comment.