Skip to content

Instantly share code, notes, and snippets.

@i-van
Created March 11, 2015 16:50
Show Gist options
  • Save i-van/28677c1a1ac6c5411b1c to your computer and use it in GitHub Desktop.
Save i-van/28677c1a1ac6c5411b1c to your computer and use it in GitHub Desktop.
var protoify = require('../lib/protoify'),
started;
started = Date.now();
var m = protoify.encode({ getConnectionMessage: { token: 'qqweqweqweqwe' } });
console.log(m);
console.log('time taken %s', started - Date.now());
// -----------------------------------
started = Date.now();
m = protoify.decode(m);
console.log(m);
console.log('time taken %s', started - Date.now());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment