UNPKG
rc-calendars
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.0
This a simple react calendar component
github.com/cc-ch/rc-calendars
cc-ch/rc-calendars
rc-calendars
/
src
/
utils.js
13 lines
•
263 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * 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 }