This website works better with JavaScript.
Home
Explore
Help
Sign In
lukechilds
/
node
mirror of
https://github.com/lukechilds/node.git
Watch
1
Star
0
Fork
0
Code
Issues
Projects
Releases
Wiki
Activity
7730
Commits
131
Branches
446
Tags
325 MiB
Tree:
0d7a0216dc
node
/
benchmark
/
fast_buffer_creation.js
5 lines
68 B
Raw
Normal View
History
Update fast buffer benchmarks
15 years ago
for
(
var
i
=
0
;
i
<
1e6
;
i
++
)
{
b
=
new
Buffer
(
10
)
;
b
[
1
]
=
2
;
}