UNPKG

@cpuchain/rollup

Version:

Rollup plugin & config generator for CPUchain TypeScript projects

5 lines (3 loc) 235 B
export type DecapitalizeOpts = [string, ...string[]]; export const decapitalize = ([first, ...rest]: DecapitalizeOpts, upperRest = false): string => first.toLowerCase() + (upperRest ? rest.join('').toUpperCase() : rest.join(''));