(str)
| 1 | export function isString(str) { |
| 2 | return typeof str === 'string' && str.constructor === String; |
| 3 | } |
| 4 | |
| 5 | export function isArray(obj) { |
| 6 | return Object.prototype.toString.call(obj) === '[object Array]'; |
no outgoing calls
no test coverage detected