Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
node-defined /
Delete
Unzip
Name
Size
Permission
Date
Action
examples
[ DIR ]
drwxr-xr-x
2023-12-23 20:12
README.md
2.09
KB
-rw-r--r--
2022-10-12 14:00
changelog.Debian.gz
644
B
-rw-r--r--
2022-11-10 16:23
copyright
1.8
KB
-rw-r--r--
2022-11-10 16:17
Save
Rename
# defined <sup>[![Version Badge][npm-version-svg]][package-url]</sup> [![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url] [![npm badge][npm-badge-png]][package-url] return the first argument that is `!== undefined` 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 [package-url]: https://npmjs.org/package/defined [npm-version-svg]: https://versionbadg.es/inspect-js/defined.svg [deps-svg]: https://david-dm.org/inspect-js/defined.svg [deps-url]: https://david-dm.org/inspect-js/defined [dev-deps-svg]: https://david-dm.org/inspect-js/defined/dev-status.svg [dev-deps-url]: https://david-dm.org/inspect-js/defined#info=devDependencies [npm-badge-png]: https://nodei.co/npm/defined.png?downloads=true&stars=true [license-image]: https://img.shields.io/npm/l/defined.svg [license-url]: LICENSE [downloads-image]: https://img.shields.io/npm/dm/defined.svg [downloads-url]: https://npm-stat.com/charts.html?package=defined [codecov-image]: https://codecov.io/gh/inspect-js/defined/branch/main/graphs/badge.svg [codecov-url]: https://app.codecov.io/gh/inspect-js/defined/ [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/defined [actions-url]: https://github.com/inspect-js/defined/actions