aboutsummaryrefslogtreecommitdiff
path: root/test/compress/issue-105.js
blob: 349d732d387c2ad90d32770aab32eed824fd14e1 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
typeof_eq_undefined: {
    options = {
        comparisons: true,
        unsafe: false
    };
    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 = b.c !== void 0 }
}