mirror of
https://github.com/mtan93/homebridge.git
synced 2026-03-15 13:20:56 +00:00
9 lines
303 B
JavaScript
9 lines
303 B
JavaScript
|
|
// Converts "accessToken" to "Access Token"
|
|
export function camelCaseToRegularForm(camelCase: string): string {
|
|
return camelCase
|
|
// insert a space before all caps
|
|
.replace(/([A-Z])/g, ' $1')
|
|
// uppercase the first character
|
|
.replace(/^./, function(str){ return str.toUpperCase(); })
|
|
} |