1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
typeof_eq_undefined: { options = { comparisons: true }; input: { a = typeof b.c != "undefined" } expect: { a = typeof b.c != "undefined" } } typeof_eq_undefined_unsafe: { options = { comparisons: true, unsafe: true }; input: { a = typeof b.c != "undefined" } expect: { a = b.c !== void 0 } }