UNPKG
hello-vga-function
Version:
latest (0.0.2)
0.0.2
0.0.1
This is hello-vga-function package
google.com
hello-vga-function
/
dist
/
index.mjs
10 lines
(9 loc)
•
206 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
// src/index.ts
function
sayHelloFromVGA
(
{ username, age }
) {
console
.
log
(
`[VGA] Hello everyone, thank you for using my library,
${username}
-
${age}
`
); }
export
{ sayHelloFromVGA
as
default
};