Skip to content

Commit

Permalink
Only depend on pako/inflate
Browse files Browse the repository at this point in the history
  • Loading branch information
danvk committed Oct 15, 2015
1 parent 7eccdf2 commit 3daecd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/BigBed.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
var Q = require('q'),
_ = require('underscore'),
jBinary = require('jbinary'),
pako = require('pako'); // for gzip inflation
pako = require('pako/lib/inflate'); // for gzip inflation


var RemoteFile = require('./RemoteFile'),
Expand Down
2 changes: 1 addition & 1 deletion src/main/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import type {InflatedBlock} from './types';
import type * as Q from 'q';

var pako = require('pako');
var pako = require('pako/lib/inflate');

// Compare two tuples of equal length. Is t1 <= t2?
// TODO: make this tupleLessOrEqual<T> -- it works with strings or booleans, too.
Expand Down

0 comments on commit 3daecd2

Please sign in to comment.