Skip to content

Commit d418684

Browse files
committed
feat(library): Adds a library entrypoint
Part of #28
1 parent 71457c5 commit d418684

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ function random() {
66
console.log('random');
77
}
88

9+
function randomItems() {
10+
console.log('randomItems');
11+
}
912

1013
module.exports = {
1114
all:all,
12-
random:random
15+
random:random,
16+
randomItems:randomItems
1317
};

0 commit comments

Comments
 (0)