* Return `true` if the `value` is null * * @static * @param {*} value The value to test * @returns {boolean} Return `true` if the `value` is null, FALSE otherwise
(value)
| 42 | * @returns {boolean} Return `true` if the `value` is null, FALSE otherwise |
| 43 | */ |
| 44 | static isNull(value) { |
| 45 | return value === null; |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Return `true` if the `value` is undefined |
no outgoing calls
no test coverage detected