���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/thietkeweb2/layout/default/node_modules/sweetalert2/src/utils/ |
export const consolePrefix = 'SweetAlert2:' /** * Capitalize the first letter of a string * * @param {string} str * @returns {string} */ export const capitalizeFirstLetter = (str) => str.charAt(0).toUpperCase() + str.slice(1) /** * Standardize console warnings * * @param {string | string[]} message */ export const warn = (message) => { console.warn(`${consolePrefix} ${typeof message === 'object' ? message.join(' ') : message}`) } /** * Standardize console errors * * @param {string} message */ export const error = (message) => { console.error(`${consolePrefix} ${message}`) } /** * Private global state for `warnOnce` * * @type {string[]} * @private */ const previousWarnOnceMessages = [] /** * Show a console warning, but only if it hasn't already been shown * * @param {string} message */ export const warnOnce = (message) => { if (!previousWarnOnceMessages.includes(message)) { previousWarnOnceMessages.push(message) warn(message) } } /** * Show a one-time console warning about deprecated params/methods * * @param {string} deprecatedParam * @param {string} useInstead */ export const warnAboutDeprecation = (deprecatedParam, useInstead) => { warnOnce( `"${deprecatedParam}" is deprecated and will be removed in the next major release. Please use "${useInstead}" instead.` ) } /** * If `arg` is a function, call it (with no arguments or context) and return the result. * Otherwise, just pass the value through * * @param {Function | any} arg * @returns {any} */ export const callIfFunction = (arg) => (typeof arg === 'function' ? arg() : arg) /** * @param {any} arg * @returns {boolean} */ export const hasToPromiseFn = (arg) => arg && typeof arg.toPromise === 'function' /** * @param {any} arg * @returns {Promise<any>} */ export const asPromise = (arg) => (hasToPromiseFn(arg) ? arg.toPromise() : Promise.resolve(arg)) /** * @param {any} arg * @returns {boolean} */ export const isPromise = (arg) => arg && Promise.resolve(arg) === arg