Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/inventory.picotech.app/public_html/node_modules/consola/src/utils/ drwxr-xr-x |
Viewing file: Select action/file-type: export function assignGlobalReference (newInstance, referenceKey) { if (!newInstance.constructor || (global[referenceKey] && !global[referenceKey].constructor)) { throw new Error('Assigning to global reference is only supported for class instances') } else if (newInstance.constructor && !global[referenceKey]) { global[referenceKey] = newInstance } else if (!( newInstance instanceof global[referenceKey].constructor || global[referenceKey] instanceof newInstance.constructor )) { throw new Error(`Not a ${global[referenceKey].constructor.name} instance`) } const oldInstance = Object.create(global[referenceKey]) for (const prop in global[referenceKey]) { oldInstance[prop] = global[referenceKey][prop] delete global[referenceKey][prop] } for (const prop of Object.getOwnPropertySymbols(global[referenceKey])) { oldInstance[prop] = global[referenceKey][prop] delete global[referenceKey][prop] } for (const prop in newInstance) { global[referenceKey][prop] = newInstance[prop] } for (const prop of Object.getOwnPropertySymbols(newInstance)) { global[referenceKey][prop] = newInstance[prop] } return oldInstance } export function assignGlobalConsola (newConsola) { return assignGlobalReference(newConsola, 'consola') } |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0045 ]-- |