Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/clinic.corals.io/node_modules/collect.js/src/methods/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/clinic.corals.io/node_modules/collect.js/src/methods/concat.js
'use strict';

const clone = require('../helpers/clone');

module.exports = function concat(collectionOrArrayOrObject) {
  let list = collectionOrArrayOrObject;

  if (collectionOrArrayOrObject instanceof this.constructor) {
    list = collectionOrArrayOrObject.all();
  } else if (typeof collectionOrArrayOrObject === 'object') {
    list = [];
    Object.keys(collectionOrArrayOrObject).forEach((property) => {
      list.push(collectionOrArrayOrObject[property]);
    });
  }

  const collection = clone(this.items);

  list.forEach((item) => {
    if (typeof item === 'object') {
      Object.keys(item).forEach(key => collection.push(item[key]));
    } else {
      collection.push(item);
    }
  });

  return new this.constructor(collection);
};

Spamworldpro Mini