Skip to content

Commit

Permalink
Update var statements in perf suite
Browse files Browse the repository at this point in the history
  • Loading branch information
kenany committed Aug 19, 2013
1 parent 40e59a2 commit 7dc278e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions perf/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
/* https://github.com/KenanY/primality/wiki/Performance */

var Benchmark = require('benchmark'),
primality = require('../primality.js'),
numbers = require('numbers'),
suite = new Benchmark.Suite;
var Benchmark = require('benchmark');
var primality = require('../primality.js');
var numbers = require('numbers');

var suite = new Benchmark.Suite;

suite
.add('primality', function() {
Expand Down

0 comments on commit 7dc278e

Please sign in to comment.