UNPKG
ndut-view
Version:
latest (0.7.0)
0.7.0
0.6.15
0.6.14
0.6.13
0.6.12
0.6.11
0.6.10
0.6.9
0.6.8
0.6.7
0.6.6
0.6.5
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
View Engine for Ndut Framework
github.com/ardhi/ndut-view
ardhi/ndut-view
ndut-view
/
ndut
/
helper
/
get-theme.js
7 lines
(6 loc)
•
255 B
JavaScript
View Raw
1
2
3
4
5
6
7
module.exports = function (name, defIfNotFound =
true
) {
const
{ _ } =
this
.ndut.helper
const
theme = _.find(
this
.ndutView.themes, { name })
if
(theme)
return
theme
return
defIfNotFound ? _.find(
this
.ndutView.themes, { name:
'default'
}) :
null
}