简体中文
Appearance
确保 字符串 存在某个后缀,如果不存在则添加该后缀。
字符串
import { ensureSuffix } from 'rattail' ensureSuffix('hello-world-suffix', '-suffix') // return 'hello-world-suffix' ensureSuffix('hello-world', '-suffix') // return 'hello-world-suffix'
value
string
suffix