Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.137.185.239
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
iferr /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.npmignore
13
B
-rw-r--r--
2014-04-11 16:07
LICENSE
1.05
KB
-rw-r--r--
2014-04-11 16:07
README.md
675
B
-rw-r--r--
2014-12-01 09:32
index.coffee
803
B
-rw-r--r--
2014-12-02 13:33
index.js
1.04
KB
-rw-r--r--
2014-12-02 13:34
package.json
1.28
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
# Delegates to `succ` on sucecss or to `fail` on error # ex: Thing.load 123, iferr cb, (thing) -> ... iferr = (fail, succ) -> (err, a...) -> if err? then fail err else succ? a... # Like iferr, but also catches errors thrown from `succ` and passes to `fail` tiferr = (fail, succ) -> iferr fail, (a...) -> try succ a... catch err then fail err # Delegate to the success function on success, or throw the error otherwise # ex: Thing.load 123, throwerr (thing) -> ... throwerr = iferr.bind null, (err) -> throw err # Prints errors when one is passed, or does nothing otherwise # ex: thing.save printerr printerr = iferr (err) -> console.error err.stack or err module.exports = exports = iferr exports.iferr = iferr exports.tiferr = tiferr exports.throwerr = throwerr exports.printerr = printerr