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 : 52.14.238.102
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 /
defined /
Delete
Unzip
Name
Size
Permission
Date
Action
example
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
test
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.travis.yml
43
B
-rw-r--r--
2015-04-08 11:31
LICENSE
1.05
KB
-rw-r--r--
2015-04-08 11:31
index.js
150
B
-rw-r--r--
2015-04-08 11:31
package.json
1.73
KB
-rw-r--r--
2021-02-04 21:24
readme.markdown
1.06
KB
-rw-r--r--
2015-04-08 11:31
Save
Rename
# defined return the first argument that is `!== undefined` [](http://ci.testling.com/substack/defined) [](http://travis-ci.org/substack/defined) Most of the time when I chain together `||`s, I actually just want the first item that is not `undefined`, not the first non-falsy item. This module is like the defined-or (`//`) operator in perl 5.10+. # example ``` js var defined = require('defined'); var opts = { y : false, w : 4 }; var x = defined(opts.x, opts.y, opts.w, 100); console.log(x); ``` ``` $ node example/defined.js false ``` The return value is `false` because `false` is the first item that is `!== undefined`. # methods ``` js var defined = require('defined') ``` ## var x = defined(a, b, c...) Return the first item in the argument list `a, b, c...` that is `!== undefined`. If all the items are `=== undefined`, return undefined. # install With [npm](https://npmjs.org) do: ``` npm install defined ``` # license MIT