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.

5 lines
268 B

3 months ago
  1. function _arrayLikeToArray(r, a) {
  2. (null == a || a > r.length) && (a = r.length);
  3. for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
  4. return n;
  5. }
  6. module.exports = _arrayLikeToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;