mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
9 lines
201 B
JavaScript
9 lines
201 B
JavaScript
|
console.log((function () {
|
||
|
var a = [
|
||
|
94,
|
||
|
173,
|
||
|
190,
|
||
|
239
|
||
|
], b = 0;
|
||
|
return b |= 94, b <<= 8, b |= 173, b <<= 8, b |= 190, b <<= 8, b |= 239;
|
||
|
})().toString(16));
|