UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

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