* Check if a value is stringifiable — i.e. it has a toString that returns * a string. Use this for ASSERTs and inputs that will be coerced to text; * use `typeof x === 'string'` inline if you need strict-string semantics. * - Returns true for strings, numbers, and most objects * - Returns false
(s)
| 302 | * @return {boolean} |
| 303 | * @memberof Math */ |
| 304 | function isStringLike(s) { return s != null && typeof s?.toString() === 'string'; } |
| 305 | |
| 306 | /** |
| 307 | * Check if object is an array |
no test coverage detected