> For the complete documentation index, see [llms.txt](https://conductor.js.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://conductor.js.org/api-reference/identity.md).

# identity

```erlang
identity :: Any input => Any input
```

## description

Returns the value passed as input without any modification.

## example

```javascript
import { identity } from 'conductor'

identity('hello') // 'hello'
```
