UNPKG
nodelike-custom
Version:
latest (0.0.1)
0.0.1
A node roguelike
github.com/boredbadge/nodelike-custom.git
boredbadge/nodelike-custom
nodelike-custom
/
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 };