UNPKG
@diyawanna/my-first-package
Version:
latest (1.0.1)
1.0.1
1.0.0
My first npm test package
github.com/Diyawanna/my-first-package
Diyawanna/my-first-package
@diyawanna/my-first-package
/
index.js
9 lines
(7 loc)
•
238 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// function sayHello(name) {
// return `Hello, ${name}! From @diyawanna package.`;
// }
// module.exports = { sayHello }; // Replace this --> With this (ES Module syntax):
export
function
sayHello
(
name
) {
return
`Hello,
${name}
!`
; }