File size: 94 Bytes
1e92f2d
 
1
2
3
export const isStringGuard = (value: unknown): value is string =>
  typeof value === 'string'