mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
11 lines
248 B
JavaScript
11 lines
248 B
JavaScript
|
export function getMethodName(camelCase) {
|
||
|
if (!camelCase || typeof camelCase !== 'string') {
|
||
|
return '';
|
||
|
}
|
||
|
|
||
|
return camelCase
|
||
|
.replace(/([a-z])([A-Z])/gu, '$1 $2')
|
||
|
.replace(/([A-Z])([a-z])/gu, ' $1$2')
|
||
|
.replace(/ +/gu, ' ');
|
||
|
}
|