Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
Merge 3617099 into 974a53e
Browse files Browse the repository at this point in the history
  • Loading branch information
mstuehlinger committed Sep 14, 2017
2 parents 974a53e + 3617099 commit 3fef6c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ exports._isValidDirectory = function(directory) {
exports._isValidSize = function(size) {
return typeof size === 'number'
&& size >= 0
&& size <= 8e+12; // 8TB
&& size <= 8 * Math.pow(2, 40); // 8TiB
};

/**
Expand Down

0 comments on commit 3fef6c0

Please sign in to comment.