Sha256: 745740f6cbcf395196ce54675aae5c282839eedaa34f7785b4ba1c1626c8422e

Contents?: true

Size: 527 Bytes

Versions: 39

Compression:

Stored size: 527 Bytes

Contents

'use strict';

module.exports = function union(init) {
  if (!Array.isArray(init)) {
    throw new TypeError('arr-union expects the first argument to be an array.');
  }

  var len = arguments.length;
  var i = 0;

  while (++i < len) {
    var arg = arguments[i];
    if (!arg) continue;

    if (!Array.isArray(arg)) {
      arg = [arg];
    }

    for (var j = 0; j < arg.length; j++) {
      var ele = arg[j];

      if (init.indexOf(ele) >= 0) {
        continue;
      }
      init.push(ele);
    }
  }
  return init;
};

Version data entries

39 entries across 38 versions & 12 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/arr-union/index.js
disco_app-0.18.0 test/dummy/node_modules/arr-union/index.js
disco_app-0.18.2 test/dummy/node_modules/arr-union/index.js
disco_app-0.16.1 test/dummy/node_modules/arr-union/index.js
disco_app-0.15.2 test/dummy/node_modules/arr-union/index.js
disco_app-0.18.4 test/dummy/node_modules/arr-union/index.js
disco_app-0.18.1 test/dummy/node_modules/arr-union/index.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/arr-union/index.js
disco_app-0.14.0 test/dummy/node_modules/arr-union/index.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/arr-union/index.js
tang-0.2.1 spec/tang_app/node_modules/arr-union/index.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/arr-union/index.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/arr-union/index.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/arr-union/index.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/arr-union/index.js
tang-0.2.0 spec/tang_app/node_modules/arr-union/index.js
tang-0.1.0 spec/tang_app/node_modules/arr-union/index.js
tang-0.0.9 spec/tang_app/node_modules/arr-union/index.js
enju_library-0.3.8 spec/dummy/node_modules/arr-union/index.js
ilog-0.4.1 node_modules/arr-union/index.js