summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/array/array_rand.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 18:02:36 +0100
committerMarvin Borner2018-11-07 18:02:36 +0100
commit824a2d9f587ca017fc71b84d835e72f54f9c87c4 (patch)
tree765267ea4686f752aad1f69930cfee5680cc494a /node_modules/locutus/php/array/array_rand.js
parentfe75612e86b493a4e66c4e104e22658679cc014f (diff)
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/array/array_rand.js')
-rw-r--r--node_modules/locutus/php/array/array_rand.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/node_modules/locutus/php/array/array_rand.js b/node_modules/locutus/php/array/array_rand.js
new file mode 100644
index 0000000..dbdfc08
--- /dev/null
+++ b/node_modules/locutus/php/array/array_rand.js
@@ -0,0 +1,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 \ No newline at end of file