toCamelCase static method

String toCamelCase(
  1. String input
)

Converts input to camelCase.

Example: "my_feature" -> "myFeature"

Implementation

static String toCamelCase(String input) {
  return ReCase(input).camelCase;
}