Skip to content

Instantly share code, notes, and snippets.

@evanlucas
Created January 29, 2016 20:17
Show Gist options
  • Save evanlucas/3274995a21cca47dff5c to your computer and use it in GitHub Desktop.
Save evanlucas/3274995a21cca47dff5c to your computer and use it in GitHub Desktop.
'use strict'
const ITER = 1e6
var t = process.hrtime()
for (var i = 0; i < ITER; i++) {
// put your call here
// isUUID(a valid uuid)
}
t = process.hrtime(t)
console.log(((t[0] * 1e9 + t[1]) / ITER).toFixed(1), 'ns/op')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment