Sha256: 714f252342104c5ac77c82adc6239a76fab7a157b4a1982740b960494b524c39
Contents?: true
Size: 534 Bytes
Versions: 137
Compression:
Stored size: 534 Bytes
Contents
typeof_eq_undefined: { options = { comparisons: true }; input: { a = typeof b.c != "undefined" } expect: { a = "undefined" != typeof b.c } } typeof_eq_undefined_unsafe: { options = { comparisons: true, unsafe: true }; input: { a = typeof b.c != "undefined" } expect: { a = void 0 !== b.c } } typeof_eq_undefined_unsafe2: { options = { comparisons: true, unsafe: true }; input: { a = "undefined" != typeof b.c } expect: { a = void 0 !== b.c } }
Version data entries
137 entries across 135 versions & 6 rubygems