Add suffix to string if it does not already end with it
ensureSuffix("hello world", ".") -> "hello world." Copy
ensureSuffix("hello world", ".") -> "hello world."
ensureSuffix("hello world.", ".") -> "hello world." Copy
ensureSuffix("hello world.", ".") -> "hello world."
string to add suffix to
suffix to add
Add suffix to string if it does not already end with it
Example
Example