blob: dbdfc086c9694e2efae91d82a86835b46eee437c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
'use strict';
module.exports = function array_rand(array, num) {
// eslint-disable-line camelcase
// discuss at: http://locutus.io/php/array_rand/
// original by: Waldo Malqui Silva (http://waldo.malqui.info)
// reimplemented by: Rafał Kukawski
// example 1: array_rand( ['Kevin'], 1 )
// returns 1: '0'
// By using Object.keys we support both, arrays and objects
// which phpjs wants to support
var keys = Object.keys(array);
if (typeof num === 'undefined' || num === null) {
num = 1;
} else {
num = +num;
}
if (isNaN(num) || num < 1 || num > keys.length) {
return null;
}
// shuffle the array of keys
for (var i = keys.length - 1; i > 0; i--) {
var j = Math.floor(Math.random() * (i + 1)); // 0 ≤ j ≤ i
var tmp = keys[j];
keys[j] = keys[i];
keys[i] = tmp;
}
return num === 1 ? keys[0] : keys.slice(0, num);
};
//# sourceMappingURL=array_rand.js.map
|