| Index: node_modules/vulcanize/node_modules/uglify-js/test/compress/issue-105.js
|
| diff --git a/node_modules/vulcanize/node_modules/uglify-js/test/compress/issue-105.js b/node_modules/vulcanize/node_modules/uglify-js/test/compress/issue-105.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ca17adbfd2dd15078bd8785ef4a15346670ca684
|
| --- /dev/null
|
| +++ b/node_modules/vulcanize/node_modules/uglify-js/test/compress/issue-105.js
|
| @@ -0,0 +1,25 @@
|
| +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 }
|
| +}
|
|
|