UNPKG
isharry
Version:
latest (0.0.3)
0.0.3
0.0.1
A simple NPM package to check if a string is 'Harry' and get its length.
isharry
/
index.mjs
9 lines
(7 loc)
•
168 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
function
isHarryCount
(
name
) {
let
stringCounter = name.
length
;
return
stringCounter; }
export
function
isHarry
(
name
) {
return
name ===
"Harry"
; }