UNPKG
khufu-runtime
Version:
latest (0.5.2)
0.5.2
0.5.1
0.5.0
0.4.5
0.4.4
0.4.2
0.4.0
0.3.7
0.3.4
0.3.3
0.3.0
0.2.0
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
A runtime support library for khufu template engine
github.com/tailhook/khufu
tailhook/khufu
khufu-runtime
/
src
/
dom.js
10 lines
(8 loc)
•
170 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{text}
from
'incremental-dom'
export
function
item
(
value, key
) {
if
(
typeof
value ==
'function'
) {
value
(key) }
else
{
text
(value) } }