UNPKG
soren-of-sdk
Version:
latest (1.1.1)
1.1.1
1.1.0
A sample npm package that provides a greeting function.
soren-of-sdk
/
src
/
index.ts
3 lines
•
113 B
text/typescript
View Raw
1
2
3
export
function
sampleFunction
(
name
:
string
):
string
{
return
`Hello,
${name}
! Welcome to my npm package.`
; }