UNPKG
@narmafzam/jalali-datepicker
Version:
latest (1.2.11)
1.2.11
1.2.10
1.2.9
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.1
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
just a jalali-datepicker
github.com/npm/npm
npm/npm
@narmafzam/jalali-datepicker
/
src
/
es6
/
date.js
16 lines
(13 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const
DateUtil
= {
convert24hTo12
(
hour
) {
let
output = hour;
if
(hour >
12
) { output = hour -
12
; }
if
(hour ===
0
) { output =
0
; }
return
output; } };
module
.
exports
=
DateUtil
;