Sign in
webkit
/
WebKit
/
6ff2ac414cff1b0d36a015f2abe5652196415334
/
.
/
JSTests
/
microbenchmarks
/
string-repeat-resolving-fixed.js
blob: 68469a13561e737365e0bb36f5107c891251673f [
file
] [
log
] [
blame
]
function
test
(
str
,
count
)
{
var
repeated
=
str
.
repeat
(
count
);
// Expand the rope.
return
repeated
[
0
]
+
repeated
[
count
>>
1
]
+
repeated
[
repeated
.
length
-
1
];
}
for
(
var
i
=
0
;
i
<
1e4
;
++
i
)
test
(
i
.
toString
(),
100
);