(identifier)
| 694 | |
| 695 | |
| 696 | def camel_case_split(identifier): |
| 697 | matches = re.finditer(r'.+?(?:(?<=[a-z])(?=[A-Z])|(?<=[A-Z])(?=[A-Z][a-z])|$)', identifier) |
| 698 | return [m.group(0) for m in matches] |
| 699 | |
| 700 | |
| 701 | def snake_case_split(identifier): |
no outgoing calls
no test coverage detected