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