* Return `true` if the given parameter is a String * * @param {*} str * @returns {boolean}
(str)
| 73 | * @returns {boolean} |
| 74 | */ |
| 75 | static isString(str) { |
| 76 | return (typeof str === 'string' || str instanceof String); |
| 77 | } |
| 78 | /** |
| 79 | * Return `true` if the `value` is an empty string '' |
| 80 | * |
no outgoing calls
no test coverage detected