export function isString(obj: any) {
  return typeof obj === 'string'
}
