Here you can find the source of parseTime()
String.prototype.parseTime = function(){ return (parseInt(this.substring(0, 2)) * 60) + (parseInt(this.substring(3))); };
String.prototype.parseTime = function( unit, settings ) { return ( new Timestring( settings ) ).parse( this, unit ); };