Files
homebridge/lib/util.js
2015-07-15 22:36:45 -07:00

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(); })
}