Sha256: 2fe7123a9e346e4f54a37a300f79d42c90d930248f1aa7101cdd5468c23ce1d0

Contents?: true

Size: 452 Bytes

Versions: 69

Compression:

Stored size: 452 Bytes

Contents

var sort = require('./sort');
var makeIterator = require('../function/makeIterator_');

    /*
     * Sort array by the result of the callback
     */
    function sortBy(arr, callback, context){
        callback = makeIterator(callback, context);

        return sort(arr, function(a, b) {
            a = callback(a);
            b = callback(b);
            return (a < b) ? -1 : ((a > b) ? 1 : 0);
        });
    }

    module.exports = sortBy;


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/sortBy.js
trusty-festivity-extension-2.3.0 node_modules/bower/node_modules/mout/array/sortBy.js
entangled-0.0.16 spec/dummy/public/node_modules/bower/node_modules/mout/array/sortBy.js
entangled-0.0.15 spec/dummy/public/node_modules/bower/node_modules/mout/array/sortBy.js
entangled-0.0.14 spec/dummy/public/node_modules/bower/node_modules/mout/array/sortBy.js
entangled-0.0.13 spec/dummy/public/node_modules/bower/node_modules/mout/array/sortBy.js
entangled-0.0.12 spec/dummy/public/node_modules/bower/node_modules/mout/array/sortBy.js
entangled-0.0.11 spec/dummy/public/node_modules/bower/node_modules/mout/array/sortBy.js
entangled-0.0.10 spec/dummy/public/node_modules/bower/node_modules/mout/array/sortBy.js