file_path stringlengths 3 280 | file_language stringclasses 66
values | content stringlengths 1 1.04M | repo_name stringlengths 5 92 | repo_stars int64 0 154k | repo_description stringlengths 0 402 | repo_primary_language stringclasses 108
values | developer_username stringlengths 1 25 | developer_name stringlengths 0 30 | developer_company stringlengths 0 82 |
|---|---|---|---|---|---|---|---|---|---|
crates/swc_ecma_minifier/tests/terser/compress/typeof/typeof_evaluation/output.js | JavaScript | a = "number";
b = "string";
c = "object";
d = "object";
e = typeof /./;
f = "boolean";
g = "function";
h = "undefined";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/typeof/typeof_evaluation/output.mangleOnly.js | JavaScript | a = typeof 1;
b = typeof "test";
c = typeof [];
d = typeof {};
e = typeof /./;
f = typeof false;
g = typeof function() {};
h = typeof undefined;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/typeof/typeof_evaluation/output.terser.js | JavaScript | a = "number";
b = "string";
c = typeof [];
d = typeof {};
e = typeof /./;
f = "boolean";
g = "function";
h = "undefined";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/typeof/typeof_in_boolean_context/input.js | JavaScript | function f1(x) {
return typeof x ? "yes" : "no";
}
function f2() {
return typeof g() ? "Yes" : "No";
}
typeof 0 ? foo() : bar();
!typeof console.log(1);
var a = !typeof console.log(2);
if (typeof (1 + foo()));
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/typeof/typeof_in_boolean_context/output.js | JavaScript | function f1(x) {
return "yes";
}
function f2() {
return g(), "Yes";
}
foo();
console.log(1);
var a = (console.log(2), !1);
foo();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/typeof/typeof_in_boolean_context/output.mangleOnly.js | JavaScript | function o(o) {
return typeof o ? "yes" : "no";
}
function e() {
return typeof g() ? "Yes" : "No";
}
typeof 0 ? foo() : bar();
!typeof console.log(1);
var f = !typeof console.log(2);
if (typeof (1 + foo())) ;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/typeof/typeof_in_boolean_context/output.terser.js | JavaScript | function f1(x) {
return "yes";
}
function f2() {
return g(), "Yes";
}
foo();
console.log(1);
var a = !(console.log(2), 1);
foo();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/ID_continue_with_surrogate_pair/input.js | JavaScript | var 丽丽丽丽 = "\u{100000}\u{100000}\u{100000}\u{100000}\u{100000}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/ID_continue_with_surrogate_pair/output.js | JavaScript | var 丽丽丽丽 = "\u{100000}\u{100000}\u{100000}\u{100000}\u{100000}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/ID_continue_with_surrogate_pair/output.mangleOnly.js | JavaScript | var a = "\u{100000}\u{100000}\u{100000}\u{100000}\u{100000}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/ID_continue_with_surrogate_pair/output.terser.js | JavaScript | var 丽丽丽丽 = "\u{100000}\u{100000}\u{100000}\u{100000}\u{100000}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/check_escape_style/input.js | JavaScript | var a = "\x01";
var ꀈ1 = "\x10";
var Ā = "\u0100";
var က = "\u1000";
var 𐀀 = "\u{10000}";
var 丽 = "\u{100000}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/check_escape_style/output.js | JavaScript | var a = "\x01";
var ꀈ1 = "\x10";
var Ā = "\u0100";
var က = "\u1000";
var 𐀀 = "\u{10000}";
var 丽 = "\u{100000}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/check_escape_style/output.mangleOnly.js | JavaScript | var a = "\x01";
var r = "\x10";
var v = "\u0100";
var x = "\u1000";
var b = "\u{10000}";
var c = "\u{100000}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/check_escape_style/output.terser.js | JavaScript | var a = "\x01";
var ꀈ1 = "\x10";
var Ā = "\u0100";
var က = "\u1000";
var 𐀀 = "\u{10000}";
var 丽 = "\u{100000}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/escape_non_escaped_identifier/input.js | JavaScript | var µþ = "\xb5\xfe";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/escape_non_escaped_identifier/output.js | JavaScript | var µþ = "\xb5\xfe";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/escape_non_escaped_identifier/output.mangleOnly.js | JavaScript | var a = "\xb5\xfe";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/escape_non_escaped_identifier/output.terser.js | JavaScript | var µþ = "\xb5\xfe";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_1/input.js | JavaScript | console.log("\ud83d", "\ude00", "😀", "\ud83d@\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_1/output.js | JavaScript | console.log("\ud83d", "\ude00", "😀", "\ud83d@\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_1/output.mangleOnly.js | JavaScript | console.log("\ud83d", "\ude00", "😀", "\ud83d@\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_1/output.terser.js | JavaScript | console.log("\ud83d", "\ude00", "😀", "\ud83d@\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_2/input.js | JavaScript | console.log("\ud83d", "\ude00", "\ud83d\ude00", "\ud83d@\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_2/output.js | JavaScript | console.log("\ud83d", "\ude00", "\ud83d\ude00", "\ud83d@\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_2/output.mangleOnly.js | JavaScript | console.log("\ud83d", "\ude00", "\ud83d\ude00", "\ud83d@\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_2/output.terser.js | JavaScript | console.log("\ud83d", "\ude00", "\ud83d\ude00", "\ud83d@\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_3/input.js | JavaScript | console.log("\ud83d" + "\ude00", "\ud83d" + "@" + "\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_3/output.js | JavaScript | console.log("\ud83d\ude00", "\ud83d@\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_3/output.mangleOnly.js | JavaScript | console.log("\ud83d" + "\ude00", "\ud83d" + "@" + "\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_3/output.terser.js | JavaScript | console.log("\ud83d" + "\ude00", "\ud83d" + "@" + "\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_4/input.js | JavaScript | console.log("\ud83d" + "\ude00", "\ud83d" + "@" + "\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_4/output.js | JavaScript | console.log("\ud83d\ude00", "\ud83d@\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_4/output.mangleOnly.js | JavaScript | console.log("\ud83d" + "\ude00", "\ud83d" + "@" + "\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2242_4/output.terser.js | JavaScript | console.log("😀", "\ud83d@\ude00");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2569/input.js | JavaScript | new RegExp("[\udc42-\udcaa\udd74-\udd96\ude45-\ude4f\udea3-\udecc]");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2569/output.js | JavaScript | RegExp("[\udc42-\udcaa\udd74-\udd96\ude45-\ude4f\udea3-\udecc]");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2569/output.mangleOnly.js | JavaScript | new RegExp("[\udc42-\udcaa\udd74-\udd96\ude45-\ude4f\udea3-\udecc]");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_2569/output.terser.js | JavaScript | new RegExp("[\udc42-\udcaa\udd74-\udd96\ude45-\ude4f\udea3-\udecc]");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_3271/input.js | JavaScript | function string2buf(str) {
var i = 0,
buf = new Array(2),
c = str.charCodeAt(0);
if (c < 2048) {
buf[i++] = 192 | (c >>> 6);
buf[i++] = 128 | (c & 63);
} else {
buf[i++] = 224 | (c >>> 12);
buf[i++] = 128 | ((c >>> 6) & 63);
buf[i++] = 128 | (c & 63);
}
return buf;
}
console.log(string2buf("é"));
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/issue_3271/output.mangleOnly.js | JavaScript | function e(e) {
var r = 0, n = new Array(2), o = e.charCodeAt(0);
if (o < 2048) {
n[r++] = 192 | (o >>> 6);
n[r++] = 128 | (o & 63);
} else {
n[r++] = 224 | (o >>> 12);
n[r++] = 128 | ((o >>> 6) & 63);
n[r++] = 128 | (o & 63);
}
return n;
}
console.log(e("é"));
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/keep_quoted_unicode_props_es5/input.js | JavaScript | console.log({ Ꞡ: "2139" });
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/keep_quoted_unicode_props_es5/output.js | JavaScript | console.log({ Ꞡ: "2139" });
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/keep_quoted_unicode_props_es5/output.mangleOnly.js | JavaScript | console.log({
Ꞡ: "2139"
});
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/keep_quoted_unicode_props_es5/output.terser.js | JavaScript | console.log({ Ꞡ: "2139" });
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/keep_quoted_unicode_props_safari/input.js | JavaScript | console.log({ Ꞡ: "2139" });
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/keep_quoted_unicode_props_safari/output.js | JavaScript | console.log({ Ꞡ: "2139" });
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/keep_quoted_unicode_props_safari/output.mangleOnly.js | JavaScript | console.log({
Ꞡ: "2139"
});
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/keep_quoted_unicode_props_safari/output.terser.js | JavaScript | console.log({ Ꞡ: "2139" });
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/non_escape_2_non_escape/input.js | JavaScript | var µþ = "µþ";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/non_escape_2_non_escape/output.js | JavaScript | var µþ = "µþ";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/non_escape_2_non_escape/output.mangleOnly.js | JavaScript | var a = "µþ";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/non_escape_2_non_escape/output.terser.js | JavaScript | var µþ = "µþ";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_escaped_identifier_2015/input.js | JavaScript | var a = "foo";
var 𐀀 = "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_escaped_identifier_2015/output.js | JavaScript | var a = "foo";
var 𐀀 = "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_escaped_identifier_2015/output.mangleOnly.js | JavaScript | var a = "foo";
var r = "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_escaped_identifier_2015/output.terser.js | JavaScript | var a = "foo";
var 𐀀 = "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_escaped_identifier_es5_as_is/input.js | JavaScript | var 𐀀 = "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_escaped_identifier_es5_as_is/output.js | JavaScript | var 𐀀 = "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_escaped_identifier_es5_as_is/output.mangleOnly.js | JavaScript | var a = "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_escaped_identifier_es5_as_is/output.terser.js | JavaScript | var 𐀀 = "bar";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_escaped_identifier_safari/input.js | JavaScript | var a = "foo";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_escaped_identifier_safari/output.js | JavaScript | var a = "foo";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_escaped_identifier_safari/output.mangleOnly.js | JavaScript | var o = "foo";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_escaped_identifier_safari/output.terser.js | JavaScript | var a = "foo";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_identifier_ascii_only/input.js | JavaScript | var a = "hi";
var bar = "hello";
var 𐀀 = "testing \u{101111}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_identifier_ascii_only/output.js | JavaScript | var a = "hi";
var bar = "hello";
var 𐀀 = "testing \u{101111}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_identifier_ascii_only/output.mangleOnly.js | JavaScript | var a = "hi";
var r = "hello";
var v = "testing \u{101111}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_identifier_ascii_only/output.terser.js | JavaScript | var a = "hi";
var bar = "hello";
var 𐀀 = "testing \u{101111}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_parse_variables/input.js | JavaScript | var a = {};
a.你好 = 456;
var ↂωↂ = 123;
var l০ = 3;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_parse_variables/output.js | JavaScript | var a = {};
a.你好 = 456;
var ↂωↂ = 123;
var l০ = 3;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_parse_variables/output.mangleOnly.js | JavaScript | var a = {};
a.你好 = 456;
var r = 123;
var v = 3;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_parse_variables/output.terser.js | JavaScript | var a = {};
a.你好 = 456;
var ↂωↂ = 123;
var l০ = 3;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_props_safari/input.js | JavaScript | console.log({ "𝒶": "foo" });
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_props_safari/output.js | JavaScript | console.log({
𝒶: "foo"
});
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_props_safari/output.mangleOnly.js | JavaScript | console.log({
"𝒶": "foo"
});
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_props_safari/output.terser.js | JavaScript | console.log({ "𝒶": "foo" });
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_string_literals/input.js | JavaScript | var a = "6 length unicode character: \u{101111}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_string_literals/output.js | JavaScript | var a = "6 length unicode character: \u{101111}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_string_literals/output.mangleOnly.js | JavaScript | var a = "6 length unicode character: \u{101111}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unicode/unicode_string_literals/output.terser.js | JavaScript | var a = "6 length unicode character: \u{101111}";
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unsafe_symbols/unsafe_symbols_1/input.js | JavaScript | Symbol("kDog");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unsafe_symbols/unsafe_symbols_1/output.js | JavaScript | Symbol("kDog");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unsafe_symbols/unsafe_symbols_1/output.mangleOnly.js | JavaScript | Symbol("kDog");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unsafe_symbols/unsafe_symbols_1/output.terser.js | JavaScript | Symbol("kDog");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unsafe_symbols/unsafe_symbols_2/input.js | JavaScript | Symbol("kDog");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unsafe_symbols/unsafe_symbols_2/output.js | JavaScript | Symbol();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unsafe_symbols/unsafe_symbols_2/output.mangleOnly.js | JavaScript | Symbol("kDog");
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/unsafe_symbols/unsafe_symbols_2/output.terser.js | JavaScript | Symbol();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/wrap_iife/wrap_iife/input.js | JavaScript | (function () {
return function () {
console.log("test");
};
})()();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/wrap_iife/wrap_iife/output.js | JavaScript | (function () {
return function () {
console.log("test");
};
})()();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/wrap_iife/wrap_iife/output.mangleOnly.js | JavaScript | (function() {
return function() {
console.log("test");
};
})()();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/wrap_iife/wrap_iife/output.terser.js | JavaScript | (function () {
return function () {
console.log("test");
};
})()();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/wrap_iife/wrap_iife_in_expression/input.js | JavaScript | foo = (function () {
return bar();
})();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/wrap_iife/wrap_iife_in_expression/output.js | JavaScript | foo = (function () {
return bar();
})();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/wrap_iife/wrap_iife_in_expression/output.mangleOnly.js | JavaScript | foo = (function() {
return bar();
})();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/wrap_iife/wrap_iife_in_expression/output.terser.js | JavaScript | foo = (function () {
return bar();
})();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/wrap_iife/wrap_iife_in_return_call/input.js | JavaScript | (function () {
return (function () {
console.log("test");
})();
})()();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/wrap_iife/wrap_iife_in_return_call/output.js | JavaScript | (function () {
return (function () {
console.log("test");
})();
})()();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_ecma_minifier/tests/terser/compress/wrap_iife/wrap_iife_in_return_call/output.mangleOnly.js | JavaScript | (function() {
return (function() {
console.log("test");
})();
})()();
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.