# isBytes

Checks whether the value is a byte array or not.

## Install

```ts
import { isBytes } from 'viem'
```

## Usage

```ts
import { isBytes } from 'viem'

isBytes(new Uint8Array([1, 69, 420]))
// true

isBytes([1, 69, 420])
// false
```

## Returns

`boolean`

Returns truthy is the value is a byte array.
