@techmely/utils
Version:
Collection of helpful JavaScript / TypeScript utils
21 lines (16 loc) • 363 B
JavaScript
/*!
* @techmely/utils
* Copyright(c) 2021-2024 Techmely <techmely.creation@gmail.com>
* MIT Licensed
*/
import {
cacheStringFunction
} from "./chunk-2Z727VLZ.mjs";
// src/camelize.ts
var camelizeRE = /-(\w)/g;
var camelize = cacheStringFunction((str) => {
return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : "");
});
export {
camelize
};