UNPKG
@eckidevs/payfastjs
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
A Node.js implementation of the PayFast API.
github.com/Eckhardt-D/payfastjs
Eckhardt-D/payfastjs
@eckidevs/payfastjs
/
src
/
utils
/
dateFormatter.js
8 lines
(6 loc)
•
155 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
// 2017-01-01T12:00:00
// YYYY-MM-DDTHH:MM:SS.000z
// 2019-10-24T11:52:35
module
.
exports
=
function
(
inputISO
) {
return
inputISO.
replace
(
/\..*/
,
""
); };