123456789101112131415161718192021222324252627282930313233 |
- function _createForOfIteratorHelperLoose(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (it) return (it = it.call(o)).next.bind(it); if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; return function () { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
- function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
- function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
- /**
- * Merges two arrays.
- * @param {*} a
- * @param {*} b
- * @return {*}
- */
- export default function mergeArrays(a, b) {
- var merged = a.slice();
- for (var _iterator = _createForOfIteratorHelperLoose(b), _step; !(_step = _iterator()).done;) {
- var element = _step.value;
- if (a.indexOf(element) < 0) {
- merged.push(element);
- }
- }
- return merged.sort(function (a, b) {
- return a - b;
- }); // ES6 version, requires Set polyfill.
- // let merged = new Set(a)
- // for (const element of b) {
- // merged.add(i)
- // }
- // return Array.from(merged).sort((a, b) => a - b)
- }
- //# sourceMappingURL=mergeArrays.js.map
|