Русский
Оформление
Преобразует строку в snake_case.
function underscore(str: string): string
import { underscore } from 'strio' underscore('helloWorld') // "hello_world" underscore('HelloWorld') // "hello_world"