UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

9 lines (6 loc) 224 B
import { cacheStringFunction } from './chunk-2Z727VLZ.mjs'; // src/snakeToCamel.ts var snake2camel = cacheStringFunction((str) => { return str.replace(/_([a-z])/g, (g) => g[1].toUpperCase()); }); export { snake2camel };