{"version":3,"sources":["webpack:///./App_Data/Webpack/Polyfills/childnode.remove.js","webpack:///./App_Data/Webpack/Polyfills/index.js"],"names":["Element","prototype","CharacterData","DocumentType","forEach","item","hasOwnProperty","Object","defineProperty","configurable","enumerable","writable","value","this","parentNode","removeChild","__webpack_require__"],"mappings":"0JAoBG,CAACA,QAAQC,UAAWC,cAAcD,UAAWE,aAAaF,WAhBrDG,QAAQ,SAAUC,GACdA,EAAKC,eAAe,WAGxBC,OAAOC,eAAeH,EAAM,SAAU,CAClCI,cAAc,EACdC,YAAY,EACZC,UAAU,EACVC,MAAO,WACqB,OAApBC,KAAKC,YAGTD,KAAKC,WAAWC,YAAYF,6CCZ5CG,EAAA,QAEAA,EAAA,QAKAA,EAAA,QACAA,EAAA,QACAA,EAAA,QACAA,EAAA","file":"polyfills.js","sourcesContent":["//https://developer.mozilla.org/en-US/docs/Web/API/ChildNode/remove\r\n\r\n// from:https://github.com/jserz/js_piece/blob/master/DOM/ChildNode/remove()/remove().md\r\nexport default (function (arr) {\r\n arr.forEach(function (item) {\r\n if (item.hasOwnProperty('remove')) {\r\n return;\r\n }\r\n Object.defineProperty(item, 'remove', {\r\n configurable: true,\r\n enumerable: true,\r\n writable: true,\r\n value: function remove() {\r\n if (this.parentNode === null) {\r\n return;\r\n }\r\n this.parentNode.removeChild(this);\r\n }\r\n });\r\n });\r\n})([Element.prototype, CharacterData.prototype, DocumentType.prototype]);","\n// we've set \"useBuiltIns: 'usage'\" \n// so we shoudn't need to import @babel/polyfill manually as the polyfils are added on the fly based on usage\n//import '@babel/polyfill';\nimport 'whatwg-fetch';\n\nimport './childnode.remove'\n\n//Polyfill detection is not yet perfect, unfortunately\n//https://github.com/vuejs/vue-cli/issues/3834\n//IE compatibility\nimport 'core-js/fn/array/flat-map';\nimport 'core-js/fn/array/from';\nimport 'core-js/es6/symbol';\nimport 'core-js/modules/es6.object.assign'"],"sourceRoot":""}