Sha256: c378552130824d175f855566ffa33c1e2df5ee997fbe3208a86cb9bcd297acc9

Contents?: true

Size: 642 Bytes

Versions: 69

Compression:

Stored size: 642 Bytes

Contents

var unique = require('./unique');
var filter = require('./filter');
var every = require('./every');
var contains = require('./contains');
var slice = require('./slice');


    /**
     * Return a new Array with elements common to all Arrays.
     * - based on underscore.js implementation
     */
    function intersection(arr) {
        var arrs = slice(arguments, 1),
            result = filter(unique(arr), function(needle){
                return every(arrs, function(haystack){
                    return contains(haystack, needle);
                });
            });
        return result;
    }

    module.exports = intersection;


Version data entries

69 entries across 69 versions & 2 rubygems

Version Path
trusty-festivity-extension-2.3.1 node_modules/bower/node_modules/mout/array/intersection.js
trusty-festivity-extension-2.3.0 node_modules/bower/node_modules/mout/array/intersection.js
entangled-0.0.16 spec/dummy/public/node_modules/bower/node_modules/mout/array/intersection.js
entangled-0.0.15 spec/dummy/public/node_modules/bower/node_modules/mout/array/intersection.js
entangled-0.0.14 spec/dummy/public/node_modules/bower/node_modules/mout/array/intersection.js
entangled-0.0.13 spec/dummy/public/node_modules/bower/node_modules/mout/array/intersection.js
entangled-0.0.12 spec/dummy/public/node_modules/bower/node_modules/mout/array/intersection.js
entangled-0.0.11 spec/dummy/public/node_modules/bower/node_modules/mout/array/intersection.js
entangled-0.0.10 spec/dummy/public/node_modules/bower/node_modules/mout/array/intersection.js