summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/datetime/getdate.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/datetime/getdate.js')
-rw-r--r--node_modules/locutus/php/datetime/getdate.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/node_modules/locutus/php/datetime/getdate.js b/node_modules/locutus/php/datetime/getdate.js
new file mode 100644
index 0000000..92ac110
--- /dev/null
+++ b/node_modules/locutus/php/datetime/getdate.js
@@ -0,0 +1,35 @@
+'use strict';
+
+module.exports = function getdate(timestamp) {
+ // discuss at: http://locutus.io/php/getdate/
+ // original by: Paulo Freitas
+ // input by: Alex
+ // bugfixed by: Brett Zamir (http://brett-zamir.me)
+ // example 1: getdate(1055901520)
+ // returns 1: {'seconds': 40, 'minutes': 58, 'hours': 1, 'mday': 18, 'wday': 3, 'mon': 6, 'year': 2003, 'yday': 168, 'weekday': 'Wednesday', 'month': 'June', '0': 1055901520}
+
+ var _w = ['Sun', 'Mon', 'Tues', 'Wednes', 'Thurs', 'Fri', 'Satur'];
+ var _m = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
+ var d = typeof timestamp === 'undefined' ? new Date() : timestamp instanceof Date ? new Date(timestamp) // Not provided
+ : new Date(timestamp * 1000) // Javascript Date() // UNIX timestamp (auto-convert to int)
+ ;
+ var w = d.getDay();
+ var m = d.getMonth();
+ var y = d.getFullYear();
+ var r = {};
+
+ r.seconds = d.getSeconds();
+ r.minutes = d.getMinutes();
+ r.hours = d.getHours();
+ r.mday = d.getDate();
+ r.wday = w;
+ r.mon = m + 1;
+ r.year = y;
+ r.yday = Math.floor((d - new Date(y, 0, 1)) / 86400000);
+ r.weekday = _w[w] + 'day';
+ r.month = _m[m];
+ r['0'] = parseInt(d.getTime() / 1000, 10);
+
+ return r;
+};
+//# sourceMappingURL=getdate.js.map \ No newline at end of file