diff options
author | Marvin Borner | 2018-11-07 22:10:16 +0100 |
---|---|---|
committer | Marvin Borner | 2018-11-07 22:10:17 +0100 |
commit | 954583f3d56fbfb60321725f13ad092e536e3737 (patch) | |
tree | a0505a763797582c61fd8c2f90b422456d8874c9 /node_modules/locutus/php/datetime/getdate.js | |
parent | 1c355e6e956a4e507ed5436d0c814ba9c3a1deb2 (diff) |
Removed node_modules
Diffstat (limited to 'node_modules/locutus/php/datetime/getdate.js')
-rw-r--r-- | node_modules/locutus/php/datetime/getdate.js | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/node_modules/locutus/php/datetime/getdate.js b/node_modules/locutus/php/datetime/getdate.js deleted file mode 100644 index 92ac110..0000000 --- a/node_modules/locutus/php/datetime/getdate.js +++ /dev/null @@ -1,35 +0,0 @@ -'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 |