* Return `true` if the `value` is an empty string '' * * @static * @param {*} value The value to test * @returns {boolean} Return `true` if the `value` is an empty string '', FALSE otherwise
(value)
| 83 | * @returns {boolean} Return `true` if the `value` is an empty string '', FALSE otherwise |
| 84 | */ |
| 85 | static isEmptyString(value) { |
| 86 | return value === ''; |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Return `true` if the parameter is a boolean |
no outgoing calls
no test coverage detected