Converts a string value into snake case.
npm install @queso/snake-case



Part of a library of zero-dependency npm modules that do just
one thing.
- 100% TypeScript support.
- It's not a party without Queso!

min + gzip | 202 bytes
Converts a string value into snake case.
``ts
import snakeCase from '@queso/snake-case'
snakeCase('fooBARBaz')
// => 'foo_bar_baz'
`
| Name | Type | Description |
| :------ | :------- | :--------------------- |
| value | string | The string to convert. |
The snake-cased string.
`ts``
string