1
0
forked from Rowland/EG
EG/Cesium-1.132/node_modules/topojson-client/src/reverse.js
2025-08-25 17:48:13 +08:00

5 lines
145 B
JavaScript

export default function(array, n) {
var t, j = array.length, i = j - n;
while (i < --j) t = array[i], array[i++] = array[j], array[j] = t;
}