UNPKG
prayer-timetable-react
Version:
latest (1.0.3)
next (1.0.0)
1.0.3
1.0.2
1.0.1
1.0.0
0.4.0
0.3.2
0.3.1
0.3.0
0.2.2
0.2.1
0.2.0
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Prayer timetable made with React
gitlab.com/ench0/prayer-timetable-react/blob/master/README.md
prayer-timetable-react
/
src
/
helpers
/
func.js
12 lines
(8 loc)
•
244 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/*eslint-disable*/
const
wordCount
= (
str
) => str.
split
(
' '
).
filter
(
(
n
) =>
n !==
''
).
length
const
appendZero
= (
unit
) => {
if
(unit <
10
)
return
`0
${unit}
`
return
`
${unit}
`
}
export
default
{ wordCount }
export
{ appendZero, wordCount }