Checks if a given value is string.
This function can also serve as a type predicate in TypeScript, narrowing the type of the argument to string
.
Optional
value: unknownThe value to check if it is string.
Returns true
if value
is a string, else false
.
Alias