web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
341 B

  1. export default function _iterableToArrayLimitLoose(arr, i) {
  2. if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;
  3. var _arr = [];
  4. for (var _iterator = arr[Symbol.iterator](), _step; !(_step = _iterator.next()).done;) {
  5. _arr.push(_step.value);
  6. if (i && _arr.length === i) break;
  7. }
  8. return _arr;
  9. }