NewDash

    Function trimEnd

    • Removes trailing whitespace or specified characters from string.

      Parameters

      • str: string

        The string to trim.

      • chars: string

        The characters to trim.

      • Optionalguard: any

      Returns string

      Returns the trimmed string.

      5.6.0

      [[trim]],[[trimStart]]

      trimEnd('  abc  ')
      // => ' abc'

      trimEnd('-_-abc-_-', '_-')
      // => '-_-abc'
    MMNEPVFCICPMFPCPTTAAATR