Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Side by Side Diff: node_modules/vulcanize/node_modules/uglify-js/test/compress/issue-105.js

Issue 800513006: Added vulcanize under third_party/npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 typeof_eq_undefined: {
2 options = {
3 comparisons: true
4 };
5 input: { a = typeof b.c != "undefined" }
6 expect: { a = "undefined" != typeof b.c }
7 }
8
9 typeof_eq_undefined_unsafe: {
10 options = {
11 comparisons: true,
12 unsafe: true
13 };
14 input: { a = typeof b.c != "undefined" }
15 expect: { a = void 0 !== b.c }
16 }
17
18 typeof_eq_undefined_unsafe2: {
19 options = {
20 comparisons: true,
21 unsafe: true
22 };
23 input: { a = "undefined" != typeof b.c }
24 expect: { a = void 0 !== b.c }
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698