Sha256: d67395f68e2ecddd56c29d95d1c2a6d8c6983577fbcce9998d5d6b51a9c4e336
Contents?: true
Size: 372 Bytes
Versions: 37
Compression:
Stored size: 372 Bytes
Contents
define( [ "./arr" ], function( arr ) { "use strict"; // Support: IE 9 - 11+, Edge 18+, Android Browser 4.0 - 4.3 only, iOS 7 - 11 only, Safari 11 only, // Firefox <= 61 only // Provide fallback for browsers without Array#flat. return arr.flat ? function( array ) { return arr.flat.call( array ); } : function( array ) { return arr.concat.apply( [], array ); }; } );
Version data entries
37 entries across 28 versions & 4 rubygems