Skip to content

Commit

Permalink
stub crc
Browse files Browse the repository at this point in the history
  • Loading branch information
ofekd committed May 11, 2015
1 parent a6b94f7 commit c7a1f28
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/storage/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@

var bufferEqual = require('buffer-equal');
var ConfigStore = require('configstore');
var crc = require('sse4_crc32');
var crc = {
calculate: function noop() {
'';
}
};
var crypto = require('crypto');
var duplexify = require('duplexify');
var fs = require('fs');
Expand Down

0 comments on commit c7a1f28

Please sign in to comment.