forked from arshadkazmi42/custom-date-formatting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
77 lines (67 loc) · 2.53 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
var moment = require("moment");
module.exports = {
/**
* Add / Subtract input days to current time and return in input format
* Pass date format which is required
* Pass days to add or subtract
* For subtracting send negative value
* @param format : (Needed date format (YYYY-MM-DD HH:mm:ss))
* @param daysToAdd : (Number of days to add)
* @returns {string}
*
* Days: DD
* Month: MM
* Year: YYYY
* Hour: HH
* Minute: mm
* Seconds: ss
* Day: dddd
*/
getNextOrPrevDateCustomFormat: function(format, daysToAdd) {
return moment((moment().add(daysToAdd, 'day'))).format(format);
},
/**
* Add / Subtract input minute to current time and return in input format
* Pass date format which is required
* Pass minutes to add or subtract
* For subtracting send negative value
* @param format (Needed date format)
* @param minutesToAdd (Needed minutes to add or subtract)
* @returns {string}
*/
getNextOrPrevMinuteDateCustomFormat: function(format, minutesToAdd) {
return moment((moment().add(minutesToAdd, 'minute'))).format(format);
},
/**
* Add / Subtract input second to current time and return in input format
* Pass date format which is required
* Pass seconds to add or subtract
* For subtracting send negative value
* @param format (Needed date format)
* @param secondsToAdd (Needed seconds to add or subtract)
* @returns {string}
*/
getNextOrPrevSecondDateCustomFormat: function(format, secondsToAdd) {
return moment((moment().add(secondsToAdd, 'second'))).format(format);
},
/**
* Convert input date and format to required date format
* @param date (Input date)
* @param currentFormat (Input date format)
* @param newformat (Output/Needed date format)
* @returns {string} (Returns input date with new input format)
*
*/
customSourceDateFormatToCustomNewDateFormat: function(date, currentFormat, newformat) {
return moment(date, currentFormat).format(newformat);
},
/**
* Get Timestamp from input date and input date format (Converting input date ti timestamp in milliseconds)
* @param date (input date)
* @param currentFormat (input date format)
* @returns {number} (returns time in milliseconds)
*/
getTimeStampFromCurrentDateFormat: function(date, currentFormat) {
return (new Date(moment(date, currentFormat).format("YYYY-MM-DD HH:mm:ss")).getTime());
},
};