Nodejs Time Parse parseTime()

Here you can find the source of parseTime()

Method Source Code

String.prototype.parseTime = function(){
  return (parseInt(this.substring(0, 2)) * 60) + (parseInt(this.substring(3)));
};

Related

  1. parseTime( unit, settings )
    String.prototype.parseTime = function( unit, settings ) {
      return ( new Timestring( settings ) ).parse( this, unit );
    };