tuiHoneyPot

front and back end of my TUI honeypot
Log | Files | Refs | README

flat.js (372B)


      1 define( [
      2 	"./arr"
      3 ], function( arr ) {
      4 
      5 "use strict";
      6 
      7 // Support: IE 9 - 11+, Edge 18+, Android Browser 4.0 - 4.3 only, iOS 7 - 11 only, Safari 11 only,
      8 // Firefox <= 61 only
      9 // Provide fallback for browsers without Array#flat.
     10 return arr.flat ? function( array ) {
     11 	return arr.flat.call( array );
     12 } : function( array ) {
     13 	return arr.concat.apply( [], array );
     14 };
     15 
     16 } );