UNPKG

@daysnap/utils

Version:
9 lines (7 loc) 141 B
// src/camelCase.ts function camelCase(str) { return str.replace(/-(\w)/g, (_, c) => c ? c.toUpperCase() : ""); } export { camelCase };