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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/local/lib/node_modules/homebridge-config-ui-x/node_modules/atomic-sleep/   drwxr-xr-x
Free 13.14 GB of 57.97 GB (22.68%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     test.js (1.55 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
'use strict'
const test = require('tape')
const sleep = require('.')

test('blocks event loop for given amount of milliseconds', ({ is, end }) => {
  const now = Date.now()
  setTimeout(() => {
    const delta = Date.now() - now
    const fuzzyDelta = Math.floor(delta / 10) * 10 // allow up to 10ms of execution lag
    is(fuzzyDelta, 1000)
    end()
  }, 100)
  sleep(1000)
})

if (typeof BigInt !== 'undefined') {

  test('allows ms to be supplied as a BigInt number', ({ is, end }) => {
    const now = Date.now()
    setTimeout(() => {
      const delta = Date.now() - now
      const fuzzyDelta = Math.floor(delta / 10) * 10 // allow up to 10ms of execution lag
      is(fuzzyDelta, 1000)
      end()
    }, 100)
    sleep(BigInt(1000)) // avoiding n notation as this will error on legacy node/browsers
  })

}

test('throws range error if ms less than 0', ({ throws, end }) => {
  throws(() => sleep(-1), RangeError('sleep: ms must be a number that is greater than 0 but less than Infinity'))
  end()
})

test('throws range error if ms is Infinity', ({ throws, end }) => {
  throws(() => sleep(Infinity), RangeError('sleep: ms must be a number that is greater than 0 but less than Infinity'))
  end()
})

test('throws range error if ms is not a number or bigint', ({ throws, end }) => {
  throws(() => sleep('Infinity'), TypeError('sleep: ms must be a number'))
  throws(() => sleep('foo'), TypeError('sleep: ms must be a number'))
  throws(() => sleep({a: 1}), TypeError('sleep: ms must be a number'))
  throws(() => sleep([1,2,3]), TypeError('sleep: ms must be a number'))
  end()
})

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