export = safeCompare;
/**
* Do a constant time string comparison. Always compare the complete strings
* against each other toget a constant time. This method does notshort-cut
* if the two string's length differs.
*/
declarefunction safeCompare(a: string, b: string): boolean;