|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
365 bytes
|
| Line | |
|---|
| 1 | var copyArray = require('./_copyArray'),
|
|---|
| 2 | shuffleSelf = require('./_shuffleSelf');
|
|---|
| 3 |
|
|---|
| 4 | /**
|
|---|
| 5 | * A specialized version of `_.shuffle` for arrays.
|
|---|
| 6 | *
|
|---|
| 7 | * @private
|
|---|
| 8 | * @param {Array} array The array to shuffle.
|
|---|
| 9 | * @returns {Array} Returns the new shuffled array.
|
|---|
| 10 | */
|
|---|
| 11 | function arrayShuffle(array) {
|
|---|
| 12 | return shuffleSelf(copyArray(array));
|
|---|
| 13 | }
|
|---|
| 14 |
|
|---|
| 15 | module.exports = arrayShuffle;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.