English
Appearance
Determines if a value is a string.
import { isString } from '@mylib/utils'; isString('hello'); // true isString(123); // false