forked from locutusjs/locutus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharray_count_values.js
54 lines (51 loc) · 1.5 KB
/
array_count_values.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
function array_count_values (array) {
// http://kevin.vanzonneveld.net
// + original by: Ates Goral (http://magnetiq.com)
// + namespaced by: Michael White (http://getsprink.com)
// + input by: sankai
// + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
// + input by: Shingo
// + bugfixed by: Brett Zamir (http://brett-zamir.me)
// * example 1: array_count_values([ 3, 5, 3, "foo", "bar", "foo" ]);
// * returns 1: {3:2, 5:1, "foo":2, "bar":1}
// * example 2: array_count_values({ p1: 3, p2: 5, p3: 3, p4: "foo", p5: "bar", p6: "foo" });
// * returns 2: {3:2, 5:1, "foo":2, "bar":1}
// * example 3: array_count_values([ true, 4.2, 42, "fubar" ]);
// * returns 3: {42:1, "fubar":1}
var tmp_arr = {},
key = '',
t = '';
var __getType = function (obj) {
// Objects are php associative arrays.
var t = typeof obj;
t = t.toLowerCase();
if (t === "object") {
t = "array";
}
return t;
};
var __countValue = function (value) {
switch (typeof(value)) {
case "number":
if (Math.floor(value) !== value) {
return;
}
// Fall-through
case "string":
if (value in this && this.hasOwnProperty(value)) {
++this[value];
} else {
this[value] = 1;
}
}
};
t = __getType(array);
if (t === 'array') {
for (key in array) {
if (array.hasOwnProperty(key)) {
__countValue.call(tmp_arr, array[key]);
}
}
}
return tmp_arr;
}