removeSuffix
lib.strings.removeSuffix
Docs pulled from | This Revision | about 11 hours ago
Return a string without the specified suffix, if the suffix matches.
Inputs
suffix
-
Suffix to remove if it matches
str
-
Input string
Type
string -> string -> string
Examples
removeSuffix
usage example
removeSuffix "front" "homefront"
=> "home"
removeSuffix "xxx" "homefront"
=> "homefront"