UNPKG
nodelike
Version:
latest (0.3.4)
0.3.4
0.3.3
0.3.1
0.3.0
0.1.0
A node roguelike
github.com/StoneCypher/nodelike
StoneCypher/nodelike
nodelike
/
src
/
js
/
nodelike.js
17 lines
(4 loc)
•
143 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
*
as
constants
from
'./constants.js'
;
const
hello
= (
whom =
'world'
) =>
`Hello,
${whom}
!`
;
export
{ hello, constants };