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

// 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 ) {
	return arr.concat.apply( [], array );
};