export function chunk(str, groupLength) {
if (typeof str !== 'string') {
return []
}
// 利用Array.from创建指定长度的数组,并映射为字符串片段
return Array.from({ length: Math.ceil(str.length / groupLength) },
(_, i) => str.slice(i * groupLength, (i + 1) * groupLength)
);
}
网友评论