built.js 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
  3. * This devtool is neither made for production nor for readable output files.
  4. * It uses "eval()" calls to create a separate source file in the browser devtools.
  5. * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
  6. * or disable the default devtool with "devtool: false".
  7. * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
  8. */
  9. /******/ (function() { // webpackBootstrap
  10. /******/ "use strict";
  11. /******/ var __webpack_modules__ = ({
  12. /***/ "./src/add.js":
  13. /*!********************!*\
  14. !*** ./src/add.js ***!
  15. \********************/
  16. /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
  17. eval("__webpack_require__.r(__webpack_exports__);\nfunction add(x,y){\r\n return x + y\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = (add);\n\n//# sourceURL=webpack:///./src/add.js?");
  18. /***/ }),
  19. /***/ "./src/count.js":
  20. /*!**********************!*\
  21. !*** ./src/count.js ***!
  22. \**********************/
  23. /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
  24. eval("__webpack_require__.r(__webpack_exports__);\nfunction count(x,y){\r\n return x - y\r\n}\r\n\r\n/* harmony default export */ __webpack_exports__[\"default\"] = (count);\n\n//# sourceURL=webpack:///./src/count.js?");
  25. /***/ }),
  26. /***/ "./src/index.js":
  27. /*!**********************!*\
  28. !*** ./src/index.js ***!
  29. \**********************/
  30. /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
  31. eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _add__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./add */ \"./src/add.js\");\n/* harmony import */ var _count__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./count */ \"./src/count.js\");\n\r\n\r\n\r\nconsole.log('index.js')\r\n\r\nconsole.log((0,_add__WEBPACK_IMPORTED_MODULE_0__.default)(1,2))\r\n\r\nconsole.log((0,_count__WEBPACK_IMPORTED_MODULE_1__.default)(4,3))\n\n//# sourceURL=webpack:///./src/index.js?");
  32. /***/ })
  33. /******/ });
  34. /************************************************************************/
  35. /******/ // The module cache
  36. /******/ var __webpack_module_cache__ = {};
  37. /******/
  38. /******/ // The require function
  39. /******/ function __webpack_require__(moduleId) {
  40. /******/ // Check if module is in cache
  41. /******/ var cachedModule = __webpack_module_cache__[moduleId];
  42. /******/ if (cachedModule !== undefined) {
  43. /******/ return cachedModule.exports;
  44. /******/ }
  45. /******/ // Create a new module (and put it into the cache)
  46. /******/ var module = __webpack_module_cache__[moduleId] = {
  47. /******/ // no module.id needed
  48. /******/ // no module.loaded needed
  49. /******/ exports: {}
  50. /******/ };
  51. /******/
  52. /******/ // Execute the module function
  53. /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
  54. /******/
  55. /******/ // Return the exports of the module
  56. /******/ return module.exports;
  57. /******/ }
  58. /******/
  59. /************************************************************************/
  60. /******/ /* webpack/runtime/make namespace object */
  61. /******/ !function() {
  62. /******/ // define __esModule on exports
  63. /******/ __webpack_require__.r = function(exports) {
  64. /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  65. /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  66. /******/ }
  67. /******/ Object.defineProperty(exports, '__esModule', { value: true });
  68. /******/ };
  69. /******/ }();
  70. /******/
  71. /************************************************************************/
  72. /******/
  73. /******/ // startup
  74. /******/ // Load entry module and return exports
  75. /******/ // This entry module can't be inlined because the eval devtool is used.
  76. /******/ var __webpack_exports__ = __webpack_require__("./src/index.js");
  77. /******/
  78. /******/ })()
  79. ;