MCPcopy Index your code
hub / github.com/mongodb/mongo-python-driver / snake_to_camel

Function snake_to_camel

test/utils_shared.py:443–445  ·  view source on GitHub ↗
(snake)

Source from the content-addressed store, hash-verified

441
442
443def snake_to_camel(snake):
444 # Regex to convert snake_case to lowerCamelCase.
445 return re.sub(r"_([a-z])", lambda m: m.group(1).upper(), snake)
446
447
448def parse_collection_options(opts):

Callers 2

generate_test_classesFunction · 0.90
generate_test_classesFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected