UNPKG

codetrix

Version:

A lightweight lodash-style utility library

9 lines (8 loc) 317 B
import { snakeCase } from "../../string"; describe('snakeCase', () => { it('converts string to snake_case', () => { expect(snakeCase('helloWorld')).toBe('hello_world'); expect(snakeCase('Hello World')).toBe('hello_world'); expect(snakeCase('hello-world')).toBe('hello_world'); }); });