# 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'
```

