init
This commit is contained in:
25
mc_test/node_modules/global-agent/dist/routines/bootstrap.js.flow
generated
vendored
Executable file
25
mc_test/node_modules/global-agent/dist/routines/bootstrap.js.flow
generated
vendored
Executable file
@ -0,0 +1,25 @@
|
||||
// @flow
|
||||
|
||||
import Logger from '../Logger';
|
||||
import {
|
||||
createGlobalProxyAgent,
|
||||
} from '../factories';
|
||||
import type {
|
||||
ProxyAgentConfigurationInputType,
|
||||
} from '../types';
|
||||
|
||||
const log = Logger.child({
|
||||
namespace: 'bootstrap',
|
||||
});
|
||||
|
||||
export default (configurationInput?: ProxyAgentConfigurationInputType): boolean => {
|
||||
if (global.GLOBAL_AGENT) {
|
||||
log.warn('found global.GLOBAL_AGENT; second attempt to bootstrap global-agent was ignored');
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
global.GLOBAL_AGENT = createGlobalProxyAgent(configurationInput);
|
||||
|
||||
return true;
|
||||
};
|
||||
Reference in New Issue
Block a user