UNPKG

@daysnap/utils

Version:
9 lines (5 loc) 223 B
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/camelCase.ts function camelCase(str) { return str.replace(/-(\w)/g, (_, c) => c ? c.toUpperCase() : ""); } exports.camelCase = camelCase;