All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.helpers.esm.maybeArrayLike.js Maven / Gradle / Ivy

There is a newer version: 7.25.6
Show newest version
import arrayLikeToArray from "./arrayLikeToArray.js";
function _maybeArrayLike(r, a, e) {
  if (a && !Array.isArray(a) && "number" == typeof a.length) {
    var y = a.length;
    return arrayLikeToArray(a, void 0 !== e && e < y ? e : y);
  }
  return r(a, e);
}
export { _maybeArrayLike as default };




© 2015 - 2024 Weber Informatics LLC | Privacy Policy