mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-26 06:14:38 +01:00
9 lines
121 B
JavaScript
9 lines
121 B
JavaScript
|
function trueTypeOf(object){
|
||
|
if (object==null){
|
||
|
return "null"
|
||
|
}
|
||
|
else {
|
||
|
return object.constructor.name
|
||
|
}
|
||
|
}
|