Sha256: 0102c84f5987e36bbbc0e99c0bf3a190878055ce82ed13a63931e7fe5907d60f

Contents?: true

Size: 573 Bytes

Versions: 69

Compression:

Stored size: 573 Bytes

Contents

var slice = require('../array/slice');

    /**
     * internal method used to create other collection modules.
     */
    function makeCollectionMethod(arrMethod, objMethod, defaultReturn) {
        return function(){
            var args = slice(arguments);
            if (args[0] == null) {
                return defaultReturn;
            }
            // array-like is treated as array
            return (typeof args[0].length === 'number')? arrMethod.apply(null, args) : objMethod.apply(null, args);
        };
    }

    module.exports = makeCollectionMethod;


Version data entries

69 entries across 69 versions & 2 rubygems

Version Path
trusty-festivity-extension-2.5.3 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.2 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.1 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.0 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.4.6 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.4.5 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.4.4 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.4.3 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.4.2 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.4.1 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.4.0 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.3.30 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.3.29 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.3.28 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.3.27 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.3.26 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.3.25 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.3.24 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.3.23 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.3.22 node_modules/bower/node_modules/mout/collection/make_.js