Skip to main content
Module

x/froebel/string.ts>snake

A strictly typed utility library.
Go to Latest
variable snake
import { snake } from "https://deno.land/x/froebel@v0.22.0/string.ts";

Transforms a variable name to snake case.

Note: The rules for transforming anything to snake case are somewhat vague. So use this only for very simple names where the resulting value is absolutely unambiguous. For more examples of how names are transformed, have a look at the test cases.

Examples

Example 1

snake('fooBar') // 'foo_bar'

type

<T extends string>(str: T) => SnakeCase<T>