UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

4 lines 114 B
import { kebabCase } from 'lodash'; export function toKebabCase(text) { return !text ? text : kebabCase(text); }