10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2025-01-13 14:29:08 +01:00
QUESTDB_website/js/trueTypeOf.js

9 lines
121 B
JavaScript

function trueTypeOf(object){
if (object==null){
return "null"
}
else {
return object.constructor.name
}
}