Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
quiz1 /
node_modules /
raf /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
1.05
KB
-rw-rw-rw-
README.md
2.44
KB
-rw-rw-rw-
index.js
1.89
KB
-rw-rw-rw-
package.json
1.07
KB
-rw-rw-rw-
polyfill.js
25
B
-rw-rw-rw-
test.js
1.37
KB
-rw-rw-rw-
window.js
69
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test.js
var test = require('tape') , raf = require('./index.js') test('continues to emit events', function(t) { t.plan(11) var start = new Date().getTime() , times = 0 raf(function tick(dt) { t.ok(dt >= 0, 'time has passed: ' + dt) if(++times == 10) { var elapsed = (new Date().getTime() - start) t.ok(elapsed >= 150, 'should take at least 9 frames worth of wall time: ' + elapsed) t.end() } else { raf(tick) } }) }) test('cancel removes callbacks from queue', function(t) { t.plan(6) function cb1() { cb1.called = true } function cb2() { cb2.called = true } function cb3() { cb3.called = true } var handle1 = raf(cb1) t.ok(handle1, 'returns a handle') var handle2 = raf(cb2) t.ok(handle2, 'returns a handle') var handle3 = raf(cb3) t.ok(handle3, 'returns a handle') raf.cancel(handle2) raf(function() { t.ok(cb1.called, 'callback was invoked') t.notOk(cb2.called, 'callback was cancelled') t.ok(cb3.called, 'callback was invoked') t.end() }) }) test('raf should throw on errors', function(t) { t.plan(1) var onError = function() { t.pass('error bubbled up to event loop') } if(typeof window !== 'undefined') { window.onerror = onError } else if(typeof process !== 'undefined') { process.on('uncaughtException', onError) } raf(function() { throw new Error('foo') }) })
Close