Skip to content

Commit e177e35

Browse files
committed
Fix eslint warning
1 parent 4c88b00 commit e177e35

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Data/Array.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@ var replicatePolyfill = function (count) {
4040
};
4141

4242
// 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;
43+
exports.replicate = typeof Array.prototype.fill === "function" ? replicate : replicatePolyfill;
4644

4745
exports.fromFoldableImpl = (function () {
4846
function Cons(head, tail) {

0 commit comments

Comments
 (0)