UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

9 lines (6 loc) 238 B
import { cacheStringFunction } from './chunk-2Z727VLZ.mjs'; // src/camel2Snake.ts var camel2snake = cacheStringFunction((str) => { return str.replace(/[A-Z0-9]/g, (char) => `_${char.toLocaleLowerCase()}`); }); export { camel2snake };