aboutsummaryrefslogtreecommitdiffstats
path: root/src/var/flat.js
blob: 1724205528c233533f4739b918e54330698b3123 (plain)
1
2
3
4
5
6
7
8
9
import arr from "./arr.js";

// Support: IE 11+, Edge 18+
// Provide fallback for browsers without Array#flat.
export default arr.flat ? function( array ) {
	return arr.flat.call( array );
} : function( array ) {
	return arr.concat.apply( [], array );
};