(value: {})
| 518 | |
| 519 | /** Returns true if the value is a string. */ |
| 520 | export function isString(value: {}): value is string { |
| 521 | return typeof value === 'string' || value instanceof String; |
| 522 | } |
| 523 | |
| 524 | export function isBoolean(value: {}): boolean { |
| 525 | return typeof value === 'boolean'; |
no outgoing calls
no test coverage detected
searching dependent graphs…