From 954583f3d56fbfb60321725f13ad092e536e3737 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 7 Nov 2018 22:10:16 +0100 Subject: Removed node_modules --- node_modules/locutus/php/datetime/getdate.js | 35 ---------------------------- 1 file changed, 35 deletions(-) delete mode 100644 node_modules/locutus/php/datetime/getdate.js (limited to 'node_modules/locutus/php/datetime/getdate.js') 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 -- cgit v1.2.3