Skip to content

Commit

Permalink
update snap
Browse files Browse the repository at this point in the history
  • Loading branch information
ahabhgk committed Apr 22, 2024
1 parent 92a9fd7 commit 6e3c894
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ module.exports = webpackAsyncContext;
const request = "a";
__webpack_require__.e("child_a_js").then(__webpack_require__.bind(__webpack_require__, /*! ./child/a.js */"./child/a.js")).then(({ a })=>console.log("Literal", a));
__webpack_require__.e("child_b_js").then(__webpack_require__.bind(__webpack_require__, /*! ./child/b.js */"./child/b.js")).then(({ b })=>console.log("Template Literal", b));
__webpack_require__(/*! ./child */"./child lazy recursive ^\\.\\/.*\\.js$")((`./child/${request}.js`).replace('./child/', './')).then(({ a })=>console.log("context_module_tpl", a));
__webpack_require__(/*! ./child */"./child lazy recursive ^\\.\\/.*\\.js$")(`./${request}.js`).then(({ a })=>console.log("context_module_tpl", a));
__webpack_require__(/*! ./child */"./child lazy recursive ^\\.\\/.*\\.js$")("./" + request + ".js").then(({ a })=>console.log("context_module_bin", a));
__webpack_require__(/*! ./child */"./child lazy recursive ^\\.\\/.*\\.js$")(("./child/".concat(request, ".js")).replace('./child/', './')).then(({ a })=>console.log("context_module_concat", a));
__webpack_require__(/*! ./child */"./child lazy recursive ^\\.\\/.*\\.js$")("./".concat(request, ".js")).then(({ a })=>console.log("context_module_concat", a));
}),

},function(__webpack_require__) {
Expand Down

0 comments on commit 6e3c894

Please sign in to comment.