ramda-adjunct
Version:
Ramda Adjunct is the most popular and most comprehensive set of utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation.
28 lines • 2.01 kB
JavaScript
function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
function _iterableToArray(r) { if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); }
function _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
import { bind } from 'ramda';
import isIterable from '../../isIterable.js';
import isNotUndefined from '../../isNotUndefined.js';
import isNotNil from '../../isNotNil.js';
import isNotFunction from '../../isNotFunction.js';
var copyArray = function copyArray(items, mapFn, thisArg) {
var boundMapFn = isNotUndefined(thisArg) ? bind(mapFn, thisArg) : mapFn;
return isNotUndefined(mapFn) ? _toConsumableArray(items).map(boundMapFn) : _toConsumableArray(items);
};
var fromArray = function fromArray(items, mapFn, thisArg) {
if (items == null) {
throw new TypeError('Array.from requires an array-like object - not null or undefined');
}
if (isNotNil(mapFn) && isNotFunction(mapFn)) {
throw new TypeError('Array.from: when provided, the second argument must be a function');
}
if (isIterable(items)) {
return copyArray(items, mapFn, thisArg);
}
return [];
};
export default fromArray;