Function
isDefined
* Whether the value is defined. * * This function only exists to avoid function allocation when calling * `Array.every()` and `Array.some()`. * * @param {*} v * @return {boolean}
(v)
Source from the content-addressed store, hash-verified
| 776 | * @return {boolean} |
| 777 | */ |
| 778 | function isDefined(v) { |
| 779 | return v !== undefined; |
| 780 | } |
Tested by
no test coverage detected