isSuffixOf package:text-short

Tests whether the first ShortText is a suffix of the second ShortText
>>> isSuffixOf "ef" "abcdef"
True
>>> isPrefixOf "df" "abcdef"
False
isSuffixOf "" t == True
isSuffixOf t t == True