UNPKG
activity-theme-creative
Version:
latest (0.2.0)
0.2.0
0.1.2
0.1.1
0.0.8
0.0.7
0.0.6
0.0.4
0.0.3
0.0.2
0.0.1
canner can
github.com/Canner-can/activity-theme-creative
Canner-can/activity-theme-creative
activity-theme-creative
/
helpers
/
ifEven.js
9 lines
•
231 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module
.
exports
=
function
(
hbs
){ hbs.
registerHelper
(
'ifEven'
,
function
(
conditional, options
) {
if
((conditional %
2
) ==
0
) {
return
options.
fn
(
this
); }
else
{
return
options.
inverse
(
this
); } }); }