(() = > {
"use strict";
/** * all modules are initialized, but all modules are not executed and need to wait for the referenced code to execute before executing ** /
var __webpack_modules__ = ({
// module module.exports __webpack_require__
"./a.js": ((__unused_webpack_module, __webpack_exports__, __webpack_require__) = > {
__webpack_require__.r(__webpack_exports__);
__webpack_require__.d(__webpack_exports__, {
"dd": () = > (dd),
"default": () = > (__WEBPACK_DEFAULT_EXPORT__)
});
const cc = {
name: 'cc'.age: 18
};
const dd = {
name: 'dd'.age: 18
}
const __WEBPACK_DEFAULT_EXPORT__ = (cc);
}),
"./css/a.css": ((__unused_webpack_module, __webpack_exports__, __webpack_require__) = >{ __webpack_require__.r(__webpack_exports__); })});// Module cache
var __webpack_module_cache__ = {};
/** * module loader, load the corresponding module according to the module ID * if the module is present in the cache, return * if the module is not present, execute the module ** /
function __webpack_require__(moduleId) {
// Find the cache
var cachedModule = __webpack_module_cache__[moduleId];
if(cachedModule ! = =undefined) {
return cachedModule.exports;
}
var module = __webpack_module_cache__[moduleId] = {
exports: {}};// Execute the module loader
__webpack_modules__[moduleId](module.module.exports, __webpack_require__);
// Returns the exports object of this module
return module.exports;
}
/** * __webpack_require__.d * passes through all the properties of module exports, mounts the same property name only once on module@param exports module.exports
* @definition The collection of attribute names of exported objects in the module */
(() = > {
__webpack_require__.d = (exports, definition) = > {
for(var key in definition) {
if(__webpack_require__.o(definition, key) && ! __webpack_require__.o(exports, key)) {
Object.defineProperty(exports, key, { enumerable: true.get: definition[key] }); }}}; }) ();/** * __webpack_require__.o Determines whether the stereotype has the attribute ** /
(() = > {
__webpack_require__.o = (obj, prop) = > (Object.prototype.hasOwnProperty.call(obj, prop))
})();
/** * __webpack_require__.r Adds an __esModule attribute to the exports object that identifies the ES6 module ** /
(() = > {
__webpack_require__.r = (exports) = > {
if(typeof Symbol! = ='undefined' && Symbol.toStringTag) {
Object.defineProperty(exports.Symbol.toStringTag, { value: 'Module' });
}
Object.defineProperty(exports.'__esModule', { value: true}); }; }) ();var __webpack_exports__ = {};
(() = > {
__webpack_require__.r(__webpack_exports__);
var _css_a_css__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/ *! ./css/index.css */ "./css/a.css");
var _a__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/ *! ./index */ "./a.js");
const a = {
name: '123'.age: 24
}
console.log('cc', _a__WEBPACK_IMPORTED_MODULE_1__.default)
console.log('aTem', a);
console.log("dd", _a__WEBPACK_IMPORTED_MODULE_1__.dd) })(); }) ();//# sourceMappingURL=main.js.map
Copy the code