{"version":3,"sources":["polyfills.js"],"names":["NodeList","prototype","forEach","Array","String","includes","length","indexOf","from","slice","call"],"mappings":"AAAA,aAGA,CAAC,UAAY,OAC8B,UAAtC,QAAOA,UAASC,SAAT,CAAmBC,OADlB,OAEZF,SAASC,SAAT,CAAmBC,OAAnB,CAA6BC,MAAMF,SAAN,CAAgBC,OAFjC,CAGZ,CAHD,G,CAMKE,OAAOH,SAAP,CAAiBI,Q,GACrBD,OAAOH,SAAP,CAAiBI,QAAjB,CAA4B,aAAyB,OAC/B,QAAjB,UADgD,GAEnD,EAAQ,CAF2C,IAKhD,EAAQ,EAAOC,MAAf,CAAwB,KAAKA,MALmB,GAQZ,CAAC,CAAjC,QAAKC,OAAL,KAER,C,EAGGJ,MAAMK,I,GACVL,MAAMK,IAAN,CAAa,WAAkB,CAC9B,aAEA,MAAO,GAAGC,KAAH,CAASC,IAAT,GACP,C","file":"polyfills.js","sourcesContent":["'use strict';\n\n// IE11/Edge ForEach polyfill.\n(function () {\n\tif (typeof NodeList.prototype.forEach === 'function') return false;\n\tNodeList.prototype.forEach = Array.prototype.forEach;\n})();\n\n// IE11 'Includes' polyfill\nif (!String.prototype.includes) {\n\tString.prototype.includes = function (search, start) {\n\t\tif (typeof start !== 'number') {\n\t\t\tstart = 0;\n\t\t}\n\n\t\tif (start + search.length > this.length) {\n\t\t\treturn false;\n\t\t} else {\n\t\t\treturn this.indexOf(search, start) !== -1;\n\t\t}\n\t};\n}\n\nif (!Array.from) {\n\tArray.from = function (object) {\n\t\t'use strict';\n\n\t\treturn [].slice.call(object);\n\t};\n}"]}