All files version.js

75% Statements 6/8
100% Branches 0/0
0% Functions 0/2
75% Lines 6/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 151x 1x 1x 1x   1x       1x          
var Version = {}
Version.GUPPY_VERSION = "2.0.0-alpha.1";
Version.DOC_VERSION = "1.2.0";
Version.SYMBOL_VERSION = "2.0.0-alpha.3";
 
Version.DOC_ERROR = function(id, found_ver){
    throw Error("Document version mismatch for " + id + ": Found " + found_ver + ", required " + Version.DOC_VERSION + ".  To update your document, please see daniel3735928559.github.io/guppy/doc/version.html");
}
 
Version.SYMBOL_ERROR = function(id, found_ver){
    throw Error("Symbol version mismatch for " + id + ": Found " + found_ver + ", required " + Version.SYMBOL_VERSION + ".  To update your document, please see daniel3735928559.github.io/guppy/doc/version.html");
}
export default Version