isString.ts 90 B

1234
  1. export default function (str: any): str is string {
  2. return typeof str === 'string';
  3. }