@mudssky/jsutils
    Preparing search index...

    Function dashCase

    • Formats the given string in dash case fashion

      Parameters

      • str: string

        输入字符串

      Returns string

      短横线格式的字符串

      dash('hello world')   // -> 'hello-world'
      dash('va va_VOOM') // -> 'va-va-voom'
      dash('helloWord') // -> 'hello-word'