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.6.3 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.18 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.17 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.16 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.15 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.14 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.13 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.12 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.11 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.10 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.9 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.8 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.7 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.6 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.5 node_modules/bower/node_modules/mout/collection/make_.js
trusty-festivity-extension-2.5.4 node_modules/bower/node_modules/mout/collection/make_.js