mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
5 lines
165 B
JavaScript
5 lines
165 B
JavaScript
|
function testme() {
|
||
|
for(var a = arguments.length, b = new Array(a), c = 0; c < a; c++)b[c] = arguments[c];
|
||
|
/^toto.+/.test(b.join("")) && global.other(!0);
|
||
|
}
|