Appearance
截取字符串
const str = '1234567890' ellipsisString(str, 3, 9) // '123...0' ellipsisString(str, 3, -1) // '123...0'
string
number