%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.146 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/ppaobm/vendor/bower-asset/fullcalendar/tests/automated/lib/ |
Upload File : |
/* NOTE: can't use Date.parse or new Date(str) to parse strings without timezones: https://stackoverflow.com/a/33909265/96342 */ /* Given an ISO8601 string with no timezone part, parses as UTC */ export function parseUtcDate(str) { let parts = str.split(/\D/) if (parts.length > 6) { // has timezone info. will correctly parse return new Date(str) } else { return new Date(Date.UTC( parseInt(parts[0]), parseInt(parts[1]) - 1, parts[2] ? parseInt(parts[2]) : 0, parts[3] ? parseInt(parts[3]) : 0, parts[4] ? parseInt(parts[4]) : 0, parts[5] ? parseInt(parts[5]) : 0 )) } } /* Given an ISO8601 string with no timezone part, parses as local */ export function parseLocalDate(str) { let parts = str.split(/\D/) if (parts.length > 6) { // has timezone info throw new Error('Don\'t pass timezone info to parseLocalDate. Use parseUtcDate instead.') } else { return new Date( parseInt(parts[0]), parseInt(parts[1]) - 1, parts[2] ? parseInt(parts[2]) : 0, parts[3] ? parseInt(parts[3]) : 0, parts[4] ? parseInt(parts[4]) : 0, parts[5] ? parseInt(parts[5]) : 0 ) } }