Skip to content

Commit

Permalink
don't use util.print
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Oct 12, 2015
1 parent 9a00ffc commit ed47f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bench.js
Expand Up @@ -135,7 +135,7 @@ function randomArray (l) {
return knuth(a)
}

function print (m,cr) { util.print(m+(cr===false?"":"\n")); return print }
function print (m,cr) { process.stdout.write(m+(cr===false?"":"\n")); return print }

function show (results) {
var averages = []
Expand Down

0 comments on commit ed47f8b

Please sign in to comment.