1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/enhanced-resolve/lib/createInnerContext.js

31 lines
616 B
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
2024-01-16 21:26:16 +08:00
module.exports = function createInnerContext(
options,
message,
messageOptional
) {
2023-12-18 13:12:25 +08:00
let messageReported = false;
const childContext = {
log: (() => {
2024-01-16 21:26:16 +08:00
if (!options.log) return undefined;
if (!message) return options.log;
const logFunction = msg => {
if (!messageReported) {
2023-12-18 13:12:25 +08:00
options.log(message);
messageReported = true;
}
options.log(" " + msg);
};
return logFunction;
})(),
stack: options.stack,
missing: options.missing
};
return childContext;
};