UNPKG

@samlevy/string-helpers

Version:
10 lines (8 loc) 185 B
import lcfirst from "./lcfirst"; import studly from "./studly"; /** * Convert a string to camelCase * * @param str */ export default (str: string): string => lcfirst(studly(str));