%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 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 : /proc/thread-self/root/var/www/html/ppaobm/vendor/bower-asset/fullcalendar/src/core/util/ |
Upload File : |
export function htmlEscape(s) { return (s + '').replace(/&/g, '&') .replace(/</g, '<') .replace(/>/g, '>') .replace(/'/g, ''') .replace(/"/g, '"') .replace(/\n/g, '<br />') } // Given a hash of CSS properties, returns a string of CSS. // Uses property names as-is (no camel-case conversion). Will not make statements for null/undefined values. export function cssToStr(cssProps) { let statements = [] for (let name in cssProps) { let val = cssProps[name] if (val != null && val !== '') { statements.push(name + ':' + val) } } return statements.join(';') } // Given an object hash of HTML attribute names to values, // generates a string that can be injected between < > in HTML export function attrsToStr(attrs) { let parts = [] for (let name in attrs) { let val = attrs[name] if (val != null) { parts.push(name + '="' + htmlEscape(val) + '"') } } return parts.join(' ') } export type ClassNameInput = string | string[] export function parseClassName(raw: ClassNameInput) { if (Array.isArray(raw)) { return raw } else if (typeof raw === 'string') { return raw.split(/\s+/) } else { return [] } }