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