-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
53 lines (50 loc) · 1.18 KB
/
index.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
const isInteger = typeof Number.isInteger === 'function'
? Number.isInteger
: (value) => Math.floor(value) === value;
const vartype = (value, strict) => {
if (strict === true) {
let type = Object.prototype.toString.call(value);
type = type.substring(8, type.length - 1).toLowerCase();
switch (type) {
case 'number':
if (Number.isNaN(value) === true) {
return 'nan';
}
if (Number.isFinite(value) === false) {
return 'infinity';
}
if (isInteger(value)) {
return 'integer';
}
if (Math.fround(value) === value) {
return 'float';
}
return 'double';
default:
return type;
}
}
const type = typeof value;
switch (type) {
case 'object': {
if (value === null) {
return 'null';
}
if (Array.isArray(value) === true) {
return 'array';
}
return type;
}
case 'number':
if (Number.isNaN(value) === true) {
return 'nan';
}
if (Number.isFinite(value) === false) {
return 'infinity';
}
return type;
default:
return type;
}
};
module.exports = vartype;