We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c88b00 commit e177e35Copy full SHA for e177e35
src/Data/Array.js
@@ -40,9 +40,7 @@ var replicatePolyfill = function (count) {
40
};
41
42
// In browsers that have Array.prototype.fill we use it, as it's faster.
43
-exports.replicate = typeof Array.prototype.fill === "function" ?
44
- replicate :
45
- replicatePolyfill;
+exports.replicate = typeof Array.prototype.fill === "function" ? replicate : replicatePolyfill;
46
47
exports.fromFoldableImpl = (function () {
48
function Cons(head, tail) {
0 commit comments