(str: any)
| 270 | * @returns boolean |
| 271 | */ |
| 272 | export function isString(str: any): boolean { |
| 273 | return {}.toString.call(str) === '[object String]'; |
| 274 | } |
| 275 | |
| 276 | /** |
| 277 | * check if obj is type of variable structure |
no outgoing calls
no test coverage detected
searching dependent graphs…