Sha256: 495710ae274abce5b6e71a9879c735ef340210b3795a91059f51c55a0f9d4b27

Contents?: true

Size: 900 Bytes

Versions: 300

Compression:

Stored size: 900 Bytes

Contents

var copyArray = require('./_copyArray'),
    isIndex = require('./_isIndex');

/* Built-in method references for those with the same name as other `lodash` methods. */
var nativeMin = Math.min;

/**
 * Reorder `array` according to the specified indexes where the element at
 * the first index is assigned as the first element, the element at
 * the second index is assigned as the second element, and so on.
 *
 * @private
 * @param {Array} array The array to reorder.
 * @param {Array} indexes The arranged array indexes.
 * @returns {Array} Returns `array`.
 */
function reorder(array, indexes) {
  var arrLength = array.length,
      length = nativeMin(indexes.length, arrLength),
      oldArray = copyArray(array);

  while (length--) {
    var index = indexes[length];
    array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined;
  }
  return array;
}

module.exports = reorder;

Version data entries

300 entries across 276 versions & 32 rubygems

Version Path
immosquare-cleaner-0.1.27 node_modules/lodash/_reorder.js
immosquare-cleaner-0.1.26 node_modules/lodash/_reorder.js
immosquare-cleaner-0.1.25 node_modules/lodash/_reorder.js
immosquare-cleaner-0.1.24 node_modules/lodash/_reorder.js
immosquare-cleaner-0.1.23 node_modules/lodash/_reorder.js
sumomo-0.10.4 data/sumomo/api_modules/node_modules/lodash/_reorder.js
sumomo-0.10.3 data/sumomo/api_modules/node_modules/lodash/_reorder.js
sumomo-0.10.2 data/sumomo/api_modules/node_modules/lodash/_reorder.js
sumomo-0.10.1 data/sumomo/api_modules/node_modules/lodash/_reorder.js
sumomo-0.10.0 data/sumomo/api_modules/node_modules/lodash/_reorder.js
reed_sdk-1.0.1 node_modules/lodash/_reorder.js
reed_sdk-1.0.0 node_modules/lodash/_reorder.js
boring_generators-0.12.0 tmp/templates/app_template/node_modules/lodash/_reorder.js
sumomo-0.9.0 data/sumomo/api_modules/node_modules/lodash/_reorder.js
sumomo-0.8.22 data/sumomo/api_modules/node_modules/lodash/_reorder.js
sumomo-0.8.21 data/sumomo/api_modules/node_modules/lodash/_reorder.js
sumomo-0.8.20 data/sumomo/api_modules/node_modules/lodash/_reorder.js
sumomo-0.8.17 data/sumomo/api_modules/node_modules/lodash/_reorder.js
sumomo-0.8.16 data/sumomo/api_modules/node_modules/lodash/_reorder.js
disco_app-0.18.0 test/dummy/node_modules/lodash/_reorder.js