-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbundle.js.map
1 lines (1 loc) · 2.28 KB
/
bundle.js.map
1
{"version":3,"sources":["webpack:///webpack/bootstrap 5255e6ac7968d54bbf08","webpack:///./web/src/main.js","webpack:///./web/src/Point.js"],"names":[],"mappings":";AAAA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,uBAAe;AACf;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;;AAGA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;;;;;;;;;;oCCtCkB,CAAY;;;;AAC9B,KAAI,IAAI,GAAG,QAAQ,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;AAC1C,KAAI,CAAC,WAAW,GAAG,cAAc,GAAG,yBAAU,CAAC,EAAE,EAAE,CAAC,C;;;;;;;;;;;;;;;;KCF9C,KAAK;AACI,cADT,KAAK,CACK,CAAC,EAAE,CAAC,EAAE;+BADhB,KAAK;;AAEH,aAAI,CAAC,CAAC,GAAG,CAAC,CAAC;AACX,aAAI,CAAC,CAAC,GAAG,CAAC,CAAC;MACd;;kBAJC,KAAK;;gBAKC,oBAAG;AACP,0BAAW,IAAI,CAAC,CAAC,UAAK,IAAI,CAAC,CAAC,OAAI;UACnC;;;YAPC,KAAK;;;sBAUI,KAAK","file":"bundle.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId])\n \t\t\treturn installedModules[moduleId].exports;\n\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\texports: {},\n \t\t\tid: moduleId,\n \t\t\tloaded: false\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.loaded = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(0);\n\n\n\n/** WEBPACK FOOTER **\n ** webpack/bootstrap 5255e6ac7968d54bbf08\n **/","import Point from './Point.js';\nvar body = document.querySelector('body');\nbody.textContent = 'Good point: ' + new Point(1, 23);\n\n\n\n/** WEBPACK FOOTER **\n ** ./web/src/main.js\n **/","class Point {\n constructor(x, y) {\n this.x = x;\n this.y = y;\n }\n toString() {\n return `(${this.x}, ${this.y})`;\n }\n}\n\nexport default Point;\n\n\n\n/** WEBPACK FOOTER **\n ** ./web/src/Point.js\n **/"],"sourceRoot":""}