aboutsummaryrefslogtreecommitdiffstats
path: root/src/var/flat.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/var/flat.js')
-rw-r--r--src/var/flat.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/var/flat.js b/src/var/flat.js
index 172420552..de911aeef 100644
--- a/src/var/flat.js
+++ b/src/var/flat.js
@@ -1,7 +1,7 @@
import arr from "./arr.js";
-// Support: IE 11+, Edge 18+
-// Provide fallback for browsers without Array#flat.
+// Support: IE 11+
+// IE doesn't have Array#flat; provide a fallback.
export default arr.flat ? function( array ) {
return arr.flat.call( array );
} : function( array ) {