字符串截断
string
number
truncate('12345', 5); // 12345 truncate('123456', 5); // 12... truncate('123456', 5, '-'); // 1234-
← getParam obj2Param →