@mudssky/jsutils
    Preparing search index...

    Function camelCase

    • Formats the given string in camel case fashion

      Parameters

      • str: string

        输入字符串

      Returns string

      驼峰格式的字符串

      camel('hello world')   // -> 'helloWorld'
      camel('va va-VOOM') // -> 'vaVaVoom'
      camel('helloWorld') // -> 'helloWorld'