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/gmdate.js.map | |
parent | 1c355e6e956a4e507ed5436d0c814ba9c3a1deb2 (diff) |
Removed node_modules
Diffstat (limited to 'node_modules/locutus/php/datetime/gmdate.js.map')
-rw-r--r-- | node_modules/locutus/php/datetime/gmdate.js.map | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/node_modules/locutus/php/datetime/gmdate.js.map b/node_modules/locutus/php/datetime/gmdate.js.map deleted file mode 100644 index 825ddc1..0000000 --- a/node_modules/locutus/php/datetime/gmdate.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../src/php/datetime/gmdate.js"],"names":["module","exports","gmdate","format","timestamp","date","require","dt","Date","parse","toUTCString","slice"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,MAAjB,EAAyBC,SAAzB,EAAoC;AACnD;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,OAAOC,QAAQ,kBAAR,CAAX;;AAEA,MAAIC,KAAK,OAAOH,SAAP,KAAqB,WAArB,GAAmC,IAAII,IAAJ,EAAnC,CAA8C;AAA9C,IACLJ,qBAAqBI,IAArB,GAA4B,IAAIA,IAAJ,CAASJ,SAAT,CAA5B,CAAgD;AAAhD,IACA,IAAII,IAAJ,CAASJ,YAAY,IAArB,CAFJ,CAVmD,CAYpB;;AAE/BA,cAAYI,KAAKC,KAAL,CAAWF,GAAGG,WAAH,GAAiBC,KAAjB,CAAuB,CAAvB,EAA0B,CAAC,CAA3B,CAAX,IAA4C,IAAxD;;AAEA,SAAON,KAAKF,MAAL,EAAaC,SAAb,CAAP;AACD,CAjBD","file":"gmdate.js","sourcesContent":["module.exports = function gmdate (format, timestamp) {\n // discuss at: http://locutus.io/php/gmdate/\n // original by: Brett Zamir (http://brett-zamir.me)\n // input by: Alex\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // example 1: gmdate('H:m:s \\\\m \\\\i\\\\s \\\\m\\\\o\\\\n\\\\t\\\\h', 1062402400); // Return will depend on your timezone\n // returns 1: '07:09:40 m is month'\n\n var date = require('../datetime/date')\n\n var dt = typeof timestamp === 'undefined' ? new Date() // Not provided\n : timestamp instanceof Date ? new Date(timestamp) // Javascript Date()\n : new Date(timestamp * 1000) // UNIX timestamp (auto-convert to int)\n\n timestamp = Date.parse(dt.toUTCString().slice(0, -4)) / 1000\n\n return date(format, timestamp)\n}\n"]}
\ No newline at end of file |