# toKebabCase

Creates a to kebab case transformation action.

Words are separated by `_`, `-` and ASCII whitespace, as well as by case and acronym boundaries.

> Acronym runs are normalized to lowercase (e.g. `parseURLValue` → `parse-url-value`) and digits stay attached to the preceding token (e.g. `item2Name` → `item2-name`).

```ts
const Action = v.toKebabCase();
```

## Returns

- `Action` <Property {...properties.Action} />

## Examples

The following examples show how `toKebabCase` can be used.

### Kebab case string

Schema that transforms a string to kebab case.

```ts
const StringSchema = v.pipe(v.string(), v.toKebabCase());
```

## Related

The following APIs can be combined with `toKebabCase`.

### Schemas

<ApiList items={['any', 'custom', 'string']} />

### Methods

<ApiList items={['pipe']} />

### Utils

<ApiList items={['isOfKind', 'isOfType']} />
