UNPKG

rc-calendars

Version:

This a simple react calendar component

13 lines 263 B
/** * Author chencc * Date 2020/03/29 */ // 分割数组 export function groupArray (arr, subGroupLength) { let index = 0 let newArray = [] while(index < arr.length) { newArray.push(arr.slice(index, index += subGroupLength)) } return newArray }