main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
369 bytes
|
Line | |
---|
1 | import shuffleSelf from './_shuffleSelf.js';
|
---|
2 | import values from './values.js';
|
---|
3 |
|
---|
4 | /**
|
---|
5 | * The base implementation of `_.shuffle`.
|
---|
6 | *
|
---|
7 | * @private
|
---|
8 | * @param {Array|Object} collection The collection to shuffle.
|
---|
9 | * @returns {Array} Returns the new shuffled array.
|
---|
10 | */
|
---|
11 | function baseShuffle(collection) {
|
---|
12 | return shuffleSelf(values(collection));
|
---|
13 | }
|
---|
14 |
|
---|
15 | export default baseShuffle;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.