Skip to content

Commit

Permalink
Fix perf
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Hulette committed Jan 26, 2018
1 parent 8cf2473 commit 5bdf17f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions js/perf/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@
// under the License.

// Use the ES5 UMD target as perf baseline
// const { col, Table, read: readBatches } = require('../targets/es5/umd');
// const { col, Table, read: readBatches } = require('../targets/es5/cjs');
// const { col, Table, read: readBatches } = require('../targets/es2015/umd');
const { col, Table, read: readBatches } = require('../targets/es2015/cjs');
// const { predicate, Table, read: readBatches } = require('../targets/es5/umd');
// const { predicate, Table, read: readBatches } = require('../targets/es5/cjs');
// const { predicate, Table, read: readBatches } = require('../targets/es2015/umd');
const { predicate, Table, read: readBatches } = require('../targets/es2015/cjs');
const { col } = predicate;

const Benchmark = require('benchmark');

Expand Down

0 comments on commit 5bdf17f

Please sign in to comment.