!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/rentals.picotech.app/public_html/node_modules/goober/prefixer/src/   drwxr-xr-x
Free 23.11 GB of 117.98 GB (19.59%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     index.js (1.29 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
import { cssPropertyAlias, cssPropertyPrefixFlags, cssValuePrefixFlags } from 'style-vendorizer';

export function prefix(property, value) {
    let cssText = '';

    /* Resolve aliases, e.g. `gap` -> `grid-gap` */
    const propertyAlias = cssPropertyAlias(property);
    if (propertyAlias) cssText += `${propertyAlias}:${value};`;

    /* Prefix properties, e.g. `backdrop-filter` -> `-webkit-backdrop-filter` */
    const propertyFlags = cssPropertyPrefixFlags(property);
    if (propertyFlags & 0b001) cssText += `-webkit-${property}:${value};`;
    if (propertyFlags & 0b010) cssText += `-moz-${property}:${value};`;
    if (propertyFlags & 0b100) cssText += `-ms-${property}:${value};`;

    /* Prefix values, e.g. `position: "sticky"` -> `position: "-webkit-sticky"` */
    /* Notice that flags don't overlap and property prefixing isn't needed here */
    const valueFlags = cssValuePrefixFlags(property, value);
    if (valueFlags & 0b001) cssText += `${property}:-webkit-${value};`;
    else if (valueFlags & 0b010) cssText += `${property}:-moz-${value};`;
    else if (valueFlags & 0b100) cssText += `${property}:-ms-${value};`;

    /* Include the standardized declaration last */
    /* https://css-tricks.com/ordering-css3-properties/ */
    cssText += `${property}:${value};`;

    return cssText;
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0047 ]--