10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-22 18:57:38 +02:00

Fix trueTypeOf null

This commit is contained in:
Mickaël Véril 2019-11-12 15:19:52 +01:00
parent 10ca75a0f0
commit 9ce83a425d

View File

@ -1,3 +1,8 @@
function trueTypeOf(object){
return object.constructor.name
if (object==null){
return "null"
}
else {
return object.constructor.name
}
}