10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-04 02:16:11 +02:00
QUESTDB_website/static/js/trueTypeOf.js

9 lines
121 B
JavaScript
Raw Normal View History

2019-09-26 09:32:03 +02:00
function trueTypeOf(object){
2019-11-12 15:19:52 +01:00
if (object==null){
return "null"
}
else {
return object.constructor.name
}
2019-09-26 09:32:03 +02:00
}