Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getImportGlobalsSrc.js « lib - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fcce0d02b3e7fe91664d7f1b8c0255cdacc7b75c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
 * Declares all globals with a var and assigns the global object. Thus you're able to
 * override globals without changing the global object itself.
 *
 * Returns something like
 * "var console = global.console; var process = global.process; ..."
 *
 * @return {String}
 */
function getImportGlobalsSrc(ignore) {
    var key,
        src = "",
        globalObj = typeof global === "undefined"? window: global;

    ignore = ignore || [];
    // global itself can't be overridden because it's the only reference to our real global objects
    ignore.push("global");
    // ignore 'module', 'exports' and 'require' on the global scope, because otherwise our code would
    // shadow the module-internal variables
    // @see https://github.com/jhnns/rewire-webpack/pull/6
    ignore.push("module", "exports", "require");
    // strict mode doesn't allow to (re)define 'undefined', 'eval' & 'arguments'
    ignore.push("undefined", "eval", "arguments");
    // 'GLOBAL' and 'root' are deprecated in Node
    // (assigning them causes a DeprecationWarning)
    ignore.push("GLOBAL", "root");
    // 'NaN' and 'Infinity' are immutable
    // (doesn't throw an error if you set 'var NaN = ...', but doesn't work either)
    ignore.push("NaN", "Infinity");

    const globals = Object.getOwnPropertyNames(globalObj);

    for (key of globals) {
        if (ignore.indexOf(key) !== -1) {
            continue;
        }

        // key may be an invalid variable name (e.g. 'a-b')
        try {
          eval("var " + key + ";");
          src += "var " + key + " = global." + key + "; ";
        } catch(e) {}
    }

    return src;
}

module.exports = getImportGlobalsSrc;