blob: d05e9fa6578a05e5ebaeea22c3e8279432302411 [file] [log] [blame]
function test(str, count)
{
return str.repeat(count);
}
for (var i = 0; i < 1e4; ++i)
test(i.toString(), i);