UNPKG
caffeine-script-runtime
Version:
latest (1.14.0)
1.14.0
1.13.8
1.13.7
1.13.6
1.13.5
1.13.4
1.13.3
1.12.0
1.10.0
1.7.2
1.7.1
1.6.0
1.4.2
1.3.1
1.2.0
1.1.8
1.1.7
1.1.6
1.1.5
1.1.1
1.1.0
1.0.0
0.2.3
0.2.2
Runtime library for CaffeineScript
caffeine-script-runtime
/
sourceWithoutNeptuneNamespaces
/
CaffeineScript
/
Runtime
/
Global.coffee
9 lines
(6 loc)
•
167 B
text/coffeescript
View Raw
1
2
3
4
5
6
7
8
9
# standardize across javascript environments:
# global == self == window (if in browser)
g =
if
window? then window
else
if
self
? then
self
else
global
g.
global
= g