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

8 lines
139 B
JavaScript

function trueTypeOf(object){
result=typeof object
if(result==typeof({})) {
result= object.constructor.name
}
return result
}