-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent---src-pages-index-js-ebbf5a500e6390e2d884.js.map
1 lines (1 loc) · 5.73 KB
/
component---src-pages-index-js-ebbf5a500e6390e2d884.js.map
1
{"version":3,"sources":["webpack:///component---src-pages-index-js-ebbf5a500e6390e2d884.js","webpack:///./src/pages/index.js"],"names":["webpackJsonp","159","module","exports","__webpack_require__","_interopRequireDefault","obj","__esModule","default","pageQuery","undefined","_react","_react2","_Galaxy","_Galaxy2","String","prototype","repeat","count","this","TypeError","str","RangeError","Infinity","Math","floor","length","rpt","i","IndexPage","props","createElement","chapters","data","allDataJson","edges","node","className"],"mappings":"AAAAA,cAAc,iBAERC,IACA,SAAUC,EAAQC,EAASC,GAEhC,YAaA,SAASC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQE,QAASF,GAXvFH,EAAQI,YAAa,EACrBJ,EAAQM,UAAYC,MCNrB,IAAAC,GAAAP,EAAA,GDUKQ,EAAUP,EAAuBM,GCRtCE,EAAAT,EAAA,IDYKU,EAAWT,EAAuBQ,ECVlCE,QAAOC,UAAUC,SAClBF,OAAOC,UAAUC,OAAS,SAAUC,GAChC,GAAY,MAARC,KACA,KAAM,IAAIC,WAAJ,iBAA+BD,KAA/B,aAEV,IAAME,MAASF,IAKf,IAJAD,GAASA,EACLA,GAASA,IACTA,EAAQ,GAERA,EAAQ,EACR,KAAM,IAAII,YAAW,oCAEzB,IAAIJ,GAASK,IACT,KAAM,IAAID,YAAW,0CAGzB,IADAJ,EAAQM,KAAKC,MAAMP,GACD,GAAdG,EAAIK,QAAwB,GAATR,EACnB,MAAO,EAKX,IAAIG,EAAIK,OAASR,GAAS,GAAK,GAC3B,KAAM,IAAII,YAAW,qDAGzB,KAAK,GADDK,GAAM,GACDC,EAAI,EAAGA,EAAIV,EAAOU,IACvBD,GAAON,CAEX,OAAOM,IAIf,IAAME,GAAY,SAAAC,GAAA,MACblB,GAAAJ,QAAAuB,cAAA,YACGnB,EAAAJ,QAAAuB,cAACjB,EAAAN,SAAOwB,SAAUF,EAAMG,KAAKC,YAAYC,MAAM,GAAGC,KAAKJ,WACvDpB,EAAAJ,QAAAuB,cAAA,OAAKM,UAAU,sBDuBtBlC,GAAQK,QCpBMqB,CAEFpB","file":"component---src-pages-index-js-ebbf5a500e6390e2d884.js","sourcesContent":["webpackJsonp([35783957827783],{\n\n/***/ 159:\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\texports.pageQuery = undefined;\n\t\n\tvar _react = __webpack_require__(1);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _Galaxy = __webpack_require__(90);\n\t\n\tvar _Galaxy2 = _interopRequireDefault(_Galaxy);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\t/* global graphql */\n\t\n\tif (!String.prototype.repeat) {\n\t // polyfill for repeat function in IE\n\t String.prototype.repeat = function (count) {\n\t if (this == null) {\n\t throw new TypeError('can\\'t convert ' + this + ' to object');\n\t }\n\t var str = '' + this;\n\t count = +count;\n\t if (count != count) {\n\t count = 0;\n\t }\n\t if (count < 0) {\n\t throw new RangeError('repeat count must be non-negative');\n\t }\n\t if (count == Infinity) {\n\t throw new RangeError('repeat count must be less than infinity');\n\t }\n\t count = Math.floor(count);\n\t if (str.length == 0 || count == 0) {\n\t return '';\n\t }\n\t // Ensuring count is a 31-bit integer allows us to heavily optimize the\n\t // main part. But anyway, most current (August 2014) browsers can't handle\n\t // strings 1 << 28 chars or longer, so:\n\t if (str.length * count >= 1 << 28) {\n\t throw new RangeError('repeat count must not overflow maximum string size');\n\t }\n\t var rpt = '';\n\t for (var i = 0; i < count; i++) {\n\t rpt += str;\n\t }\n\t return rpt;\n\t };\n\t}\n\t\n\tvar IndexPage = function IndexPage(props) {\n\t return _react2.default.createElement(\n\t 'main',\n\t null,\n\t _react2.default.createElement(_Galaxy2.default, { chapters: props.data.allDataJson.edges[0].node.chapters }),\n\t _react2.default.createElement('div', { className: 'background-image' })\n\t );\n\t};\n\t\n\texports.default = IndexPage;\n\tvar pageQuery = exports.pageQuery = '** extracted graphql fragment **';\n\n/***/ })\n\n});\n\n\n// WEBPACK FOOTER //\n// component---src-pages-index-js-ebbf5a500e6390e2d884.js","/* global graphql */\n\nimport React from 'react';\n\nimport Galaxy from '../components/Galaxy/Galaxy';\n\nif (!String.prototype.repeat) { // polyfill for repeat function in IE\n String.prototype.repeat = function (count) {\n if (this == null) {\n throw new TypeError(`can't convert ${this} to object`);\n }\n const str = `${this}`;\n count = +count;\n if (count != count) {\n count = 0;\n }\n if (count < 0) {\n throw new RangeError('repeat count must be non-negative');\n }\n if (count == Infinity) {\n throw new RangeError('repeat count must be less than infinity');\n }\n count = Math.floor(count);\n if (str.length == 0 || count == 0) {\n return '';\n }\n // Ensuring count is a 31-bit integer allows us to heavily optimize the\n // main part. But anyway, most current (August 2014) browsers can't handle\n // strings 1 << 28 chars or longer, so:\n if (str.length * count >= 1 << 28) {\n throw new RangeError('repeat count must not overflow maximum string size');\n }\n let rpt = '';\n for (let i = 0; i < count; i++) {\n rpt += str;\n }\n return rpt;\n };\n}\n\nconst IndexPage = props =>\n (<main>\n <Galaxy chapters={props.data.allDataJson.edges[0].node.chapters} />\n <div className=\"background-image\" />\n </main>);\n\nexport default IndexPage;\n\nexport const pageQuery = graphql`\n query IndexQuery {\n allDataJson {\n edges {\n node {\n chapters {\n id\n name\n broadcastDate\n broadcastStartTime\n broadcastEndTime\n audio {\n type\n soundcloudSecretToken\n soundcloudTrackID\n }\n }\n }\n }\n }\n }\n`;\n\n\n\n// WEBPACK FOOTER //\n// ./src/pages/index.js"],"sourceRoot":""}