small-benchmark.js 275 Bytes
Newer Older
Muddsair Sharif's avatar
Muddsair Sharif committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var Writer = require(__dirname + '/../');

module.exports = function() {
  var writer = new Writer();
  writer.addInt32(10);
  writer.addInt16(5);
  writer.addCString('test');
  writer.flush('X');
};

if(!module.parent) {
  module.exports();
  console.log('benchmark ok');
}