mazey
    Preparing search index...

    Function convertUnderToCamel

    • Convert Underscore to CamelCase.

      Usage:

      import { convertUnderToCamel } from "mazey";

      const ret1 = convertUnderToCamel("a_b_c");
      const ret2 = convertUnderToCamel("a_bb_cc");
      console.log(ret1, ret2);

      Output:

      aBC aBbCc
      

      Parameters

      • underCase: string

        "a_bb_cc"

      Returns string

      "aBbCc"