repl.txt (559B)
1 2 {{alias}}( [codegen] ) 3 Returns the global object. 4 5 Parameters 6 ---------- 7 codegen: boolean (optional) 8 Boolean indicating whether to use code generation to resolve the global 9 object. Code generation is the *most* reliable means for resolving the 10 global object; however, using code generation may violate content 11 security policies (CSPs). Default: false. 12 13 Returns 14 ------- 15 global: Object 16 Global object. 17 18 Examples 19 -------- 20 > var g = {{alias}}() 21 {...} 22 23 See Also 24 -------- 25