UNPKG
@vivekreddy066/my-package
Version:
latest (1.0.1)
1.0.1
1.0.0
"Building package for learning purpose"
@vivekreddy066/my-package
/
index.js
15 lines
(12 loc)
•
209 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function
isWDS
(string)
{
if
(
string
==
"WDS"
) { console.
log
(
"WDS is a string"
);
return
true
; }
else
{
return
false
; } }
module
.exports = { isWDS } //isWDS(
"WDS"
);