UNPKG
@jalter4/fsc-first-module
Version:
latest (1.0.1)
1.0.1
1.0.0
My first module from FSC! =)
@jalter4/fsc-first-module
/
index.js
8 lines
(6 loc)
•
147 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
export
const
sum
= (
x, y
) => {
return
x + y; };
export
const
sayHi
= (
) => {
console
.
log
(
"My first module published in NPM!!"
); };