Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fast_buffer_creation.js « benchmark - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fbd0c7579a45073a3468f1f6c2f22f330fd47ad6 (plain)
1
2
3
4
for (var i = 0; i < 1e6; i++) {
  b = new Buffer(10);
  b[1] = 2;
}