ストリクト モードを使用し、ウィンドウ以外の環境で実行できることを確認しながら、グローバル スコープを取得できますか。
次の例を参照してください。
define(['other', 'thing'], function() {
// this === window in desktop environment
// this === GLOBAL in node environment
});
define(['other', 'thing'], function() {
"use strict";
// this === undefined in desktop environment
// this === GLOBAL in node environment
// As of my understanding node has to be configured using `node --use_strict`
// (http://stackoverflow.com/questions/9031888/any-way-to-force-strict-mode-in-node)
// But that not the point.
});
内部のグローバル変数 ( window
/ ) を取得する方法はありますか。GLOBAL
define