* Tests whether a value is string
(text)
| 1830 | * Tests whether a value is string |
| 1831 | */ |
| 1832 | function isString(text) { |
| 1833 | return typeof text === "string"; |
| 1834 | } |
| 1835 | ts.isString = isString; |
| 1836 | function isNumber(x) { |
| 1837 | return typeof x === "number"; |
no outgoing calls
no test coverage detected
searching dependent graphs…