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 ); };