Function ensureSuffix

Add suffix to string if it does not already end with it

ensureSuffix("hello world", ".") -> "hello world."
ensureSuffix("hello world.", ".") -> "hello world."
  • Parameters

    • string: string

      string to add suffix to

    • suffix: string

      suffix to add

    Returns string