UNPKG
saywhatever
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Say whatever function.
saywhatever
/
sayStuff.js
11 lines
(8 loc)
•
180 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
function
sayWhatever
(
whatever
) {
console
.
log
(whatever);
return
whatever; }
function
sayHello
(
) {
console
.
log
(
"hello"
); }
module
.
exports
= {sayWhatever, sayHello}