clear-af.js
    Preparing search index...

    Function camelify

    • Function

      Transform a string to camelCase format

      Parameters

      • str: string

        The string to transform

      Returns string

      The string in camelCase format

      camelify("hello world");       // "helloWorld"
      camelify("C'est un test"); // "cestUnTest"
      camelify("foo bar baz"); // "fooBarBaz"