---
url: /api/core/types/utils/function-is-string.md
description: api documentation of isString from @tsed/core
---

## Usage

```typescript
import { isString } from "@tsed/core";
```

> See [/packages/core/src/utils/isString.ts](https://github.com/tsedio/tsed/blob/v8.37.1/packages/core/src/utils/isString.ts#L0-L0).

## Overview

```ts
function isString(target: any): target is string;
```

## Description

Checks if a value is a string primitive.
