-
Notifications
You must be signed in to change notification settings - Fork 0
/
typeOf.js
60 lines (59 loc) · 1.63 KB
/
typeOf.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
55
56
57
58
59
60
var Animal, Person, item, list, toClass, typeOf, _i, _len;
Animal = (function() {
function Animal(name) {
this.name = name;
return this.name;
}
return Animal;
})();
Person = function() {
return "Tom";
};
/* class typeOf START */
typeOf = (function() {
function typeOf(value) {
var getClass;
this.value = value;
if (this.value === null) {
return "[object Null]";
}
if (this.value === void 0 || typeof this.value === "undefined") {
return "[object Undefined]";
}
getClass = toClass(this.value);
if (getClass === "[object annonymous]") {
return this.value;
}
return getClass;
}
return typeOf;
})();
toClass = function(value) {
var str;
this.value = value;
str = {}.toString.call(this.value);
switch (str) {
case "[object Function]":
return (function(obj) {
var name;
name = obj.name || "Annonymous";
return "[object " + name + "]";
})(this.value);
case "[object Object]":
return (function(obj) {
var name;
name = obj.constructor.name || "Annonymous";
return "[class " + name + "]";
})(this.value);
default:
return str;
}
};
/* class typeOf END */
list = ["", new String(""), NaN, 0, Infinity, -1, new Number("2"), "2", true, null, void 0, [], new Array, Array(), {}, new Object(), function() {}, typeOf(""), new typeOf(), new Date(), new Animal("Ben"), new Animal(), Animal(), Animal("ben"), Animal, new Person(), Person(), Person];
for (_i = 0, _len = list.length; _i < _len; _i++) {
item = list[_i];
console.log(typeOf(item), "\t\t\t :: \t\t\t", item);
}
/*
console.log typeOf Animal()*/