fix: null inference

This commit is contained in:
cha0s 2021-01-31 01:29:54 -06:00
parent 300842b0f1
commit 8f9adad958

View File

@ -101,7 +101,7 @@ export default class Context {
}
static inferTypeOf(value) {
if ('null' === value) {
if (null === value) {
return 'null';
}
switch (typeof value) {