fix: null inference
This commit is contained in:
parent
300842b0f1
commit
8f9adad958
|
@ -101,7 +101,7 @@ export default class Context {
|
|||
}
|
||||
|
||||
static inferTypeOf(value) {
|
||||
if ('null' === value) {
|
||||
if (null === value) {
|
||||
return 'null';
|
||||
}
|
||||
switch (typeof value) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user