Skip to content

Commit 6edf661

Browse files
committed
improve toPascalCase, toCamelCase + toKebabCase
1 parent feb2bcd commit 6edf661

File tree

1 file changed

+25
-3
lines changed

1 file changed

+25
-3
lines changed

src/index.ts

+25-3
Original file line numberDiff line numberDiff line change
@@ -1558,11 +1558,33 @@ export function createError(errorCode:string, message:string, fieldName?:string)
15581558
})
15591559
}
15601560

1561-
export function toCamelCase (s: string) { return !s ? s : s.charAt(0).toLowerCase() + s.substring(1) }
1561+
export function toPascalCase(s: string) {
1562+
if (!s) return ''
1563+
const isAllCaps = s.match(/^[A-Z0-9_]+$/)
1564+
if (isAllCaps) {
1565+
const words = s.split('_')
1566+
return words.map(x => x[0].toUpperCase() + x.substring(1).toLowerCase()).join('')
1567+
}
1568+
if (s.includes('_')) {
1569+
return s.split('_').filter(x => x[0]).map(x => x[0].toUpperCase() + x.substring(1)).join('')
1570+
}
1571+
return s.charAt(0).toUpperCase() + s.substring(1)
1572+
}
15621573

1563-
export function toPascalCase(s: string) { return !s ? s : s.charAt(0).toUpperCase() + s.substring(1) }
1574+
export function toCamelCase(s: string) {
1575+
s = toPascalCase(s)
1576+
if (!s) return ''
1577+
return s.charAt(0).toLowerCase() + s.substring(1)
1578+
}
15641579

1565-
export function toKebabCase(s: string) { return (s || '').replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase() }
1580+
export function toKebabCase(s: string) {
1581+
if (!s || s.length <= 1) return s.toLowerCase()
1582+
return s
1583+
.replace(/([A-Z0-9])/g, '-$1')
1584+
.toLowerCase()
1585+
.replace(/^-/, '')
1586+
.replace(/-+/g, '-')
1587+
}
15661588

15671589
export function map(o:any, f:(x:any) => any) { return o == null ? null : f(o) }
15681590

0 commit comments

Comments
 (0)