* Return `true` if the `value` is undefined * * @static * @param {*} value The value to test * @returns {boolean} Return `true` if the `value` is undefined, FALSE otherwise
(value)
| 53 | * @returns {boolean} Return `true` if the `value` is undefined, FALSE otherwise |
| 54 | */ |
| 55 | static isUndefined(value) { |
| 56 | return value === void(0); |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Return `true` if the `value` is undefined, null or empty |
no outgoing calls
no test coverage detected