Sign in
webkit
/
WebKit
/
c3250a6eaba24bc29f880c8d8a153921fb354a10
/
.
/
JSTests
/
microbenchmarks
/
string-repeat-single-not-resolving.js
blob: d846c6ca84e934c8eb92c96a1e64faf670079d90 [
file
] [
log
] [
blame
]
utatane.tea@gmail.com
0f8e083
2016-03-30 16:34:30 +0000
[
diff
] [
blame
]
1
function
test
(
str
,
count
)
2
{
3
return
str
.
repeat
(
count
);
4
}
5
6
for
(
var
i
=
0
;
i
<
1e4
;
++
i
)
7
test
(
' '
,
i
);