UNPKG
riot-tmpl
Version:
latest (3.0.8)
3.0.8
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
3.0.0-rc
2.4.2
2.4.1
2.4.0
2.4.0-beta
2.3.22
2.3.21
2.3.20
2.3.19
2.3.18
2.3.17
2.3.15
2.3.14
2.3.13
2.3.12
2.3.1
2.3.0
2.3.0-beta.8
2.3.0-beta.7
2.3.0-beta.4
2.3.0-beta.2
2.3.0-beta.1
2.0.0-beta.2
2.0.0-beta
The riot template engine
github.com/riot/tmpl
riot/tmpl
riot-tmpl
/
src
/
notevil
/
helpers.js
5 lines
(4 loc)
•
190 B
JavaScript
View Raw
1
2
3
4
5
export
function
getGlobal
(
str
) {
var
ctx = (
typeof
window
!==
'undefined'
?
window
:
typeof
global
!==
'undefined'
?
global
:
this
)
return
typeof
str !==
'undefined'
? ctx[str] : ctx }