This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
^(((feature)|(bugfix))\/([A-Z]*-[0-9]+)|(hotfix\/)).* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jSigHelper = (function() { | |
var chunkSeparator = '_' | |
, charmap = {} // {'1':'g','2':'h','3':'i','4':'j','5':'k','6':'l','7':'m','8':'n','9':'o','a':'p','b':'q','c':'r','d':'s','e':'t','f':'u','0':'v'} | |
, charmap_reverse = {} // will be filled by 'uncompress*" function | |
// need to split below for IE7 (possibly others), which does not understand string[position] it seems (returns undefined) | |
, allchars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWX'.split('') | |
, bitness = allchars.length / 2 | |
, minus = 'Z' | |
, plus = 'Y' | |