> ## Documentation Index
> Fetch the complete documentation index at: https://kk-83bff226.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# isAnagram

> Checks if two strings are anagrams of each other.

## Signature

```typescript path=null start=null theme={null}
isAnagram(str1: string, str2: string): boolean
```

## Parameters

* **str1**: `string` - The first string.
* **str2**: `string` - The second string.

## Returns

`boolean` - Returns true if the two strings are anagrams of each other, false otherwise.

## Source

Defined in [string.ts:163](https://github.com/koji/ichigyou/blob/main/src/string.ts#L163)
