Nodejs Time Format toTimerFormat()

Here you can find the source of toTimerFormat()

Method Source Code

projectName = 'Meteoro';
projectSlogan = 'Pomodoro App on Meteor';
Number.prototype.toTimerFormat = function () {
    var sec_num = parseInt(this, 10); // don't forget the second param
    //var hours   = Math.floor(sec_num / 3600);
    var hours   = 0;
    var minutes = Math.floor((sec_num - (hours * 3600)) / 60);
    var seconds = sec_num - (hours * 3600) - (minutes * 60);

    //if (hours   < 10) {hours   = "0"+hours;}
    if (minutes < 10) {minutes = "0"+minutes;}
    if (seconds < 10) {seconds = "0"+seconds;}
    //var time    = hours+':'+minutes+':'+seconds;
    var time    = minutes+':'+seconds;
    return time;//from w  ww  . j ava  2s . co  m
}
String.prototype.fromTimerFormat = function () {
   timerArray = this.split( ':' );
   var i = 0;
   var finalValue = 0;
   while ( timerArray.length > 0 ) {
      finalValue += ( timerArray.pop() * ( i == 0 ? 1 : i ) );
      i += 60;
   }
   return finalValue;
}

capitalize = function(str){
   str = str == null ? '' : String(str);
   return str.charAt(0).toUpperCase() + str.slice(1);
};

Related

  1. toTime()
    Number.prototype.toTime = function() {
      if (this < 10) {
        return '0' + this;
      } else {
        return this + '';
    
  2. toTime()
    Number.prototype.toTime = function () {
        var d = this;
        var date = new Date();
        date.setTime(d);
        var h =date.getHours();
        var m = date.getMinutes();
        var s = date.getSeconds();
        return ((h < 10 ? "0" : "") +h +  ":" + (m < 10 ? "0" : "") + m + ":" + (s < 10 ? "0" : "") + s );
    };
    ...
    
  3. toTimeCode()
    Number.prototype.toTimeCode = function(){
      var minutes = Math.floor(this/60);
      var seconds = this%60;
      if(minutes != NaN){
        if(minutes !=0){
          return minutes + ":" + seconds;
        else{
          return seconds;
    ...
    
  4. toTimeCode()
    Number.prototype.toTimeCode = function(){
      minutes = Math.floor(this/60.0);
      seconds = Math.round(this - (minutes * 60.0));
      hours = Math.floor(minutes/60.0);
      minutes = minutes - (hours * 60);
      if(seconds == 60) {
        minutes+=1;
        seconds = 0;
      if(minutes == 60) {
        hours+=1;
        minutes = 0;
      if(this == NaN || seconds==NaN){ seconds = 0;}
      if(this == NaN || minutes==NaN){ minutes = 0;}
      if((""+seconds).length == 1) seconds = "0"+seconds;
      if((""+minutes).length == 1) minutes = "0"+minutes;
      if((""+hours).length == 1)   hours = "0"+hours;
      if(parseInt(hours) > 0){
        return hours + ":" + minutes + ":" + seconds;
      }else{
        return minutes + ":" + seconds;
    
  5. toTimeRemain()
    Number.prototype.toTimeRemain = function () {
        var sec_num = parseInt(this, 10); 
        var hours   = Math.floor(sec_num / 3600);
        var minutes = Math.floor((sec_num - (hours * 3600)) / 60);
        var seconds = sec_num - (hours * 3600) - (minutes * 60);
        if (hours   < 10) {hours   = hours;}
        if (minutes < 10) {minutes = minutes;}
        if (seconds < 10) {seconds = '0' + seconds;}
        var time = minutes+':'+seconds;
    ...
    
  6. formatAsTime()
    Number.prototype.formatAsTime = function() {
      var secs = Math.floor(this);
      if (secs < 0) {
        return "Indefinite";
      } else if (secs === 0) {
        return "0s";
      var days = Math.floor(secs / 86400);
      var hours = Math.floor((secs % 86400) / 3600);
    ...
    
  7. hour()
    Number.prototype.hour = Number.prototype.hours = function() {
      return (this * 3600 * 1000);
    };
    
  8. hours()
    Number.prototype.hours = function () {
      var i = this.valueOf();
      var t = new Date(1000 * 60 * 60 * i);
      return new Date(t).getTime();
    };
    
  9. timeAgo(options)
    Number.prototype.timeAgo = function(options) {
      var now  = new Date(),
          diff = now.getTime()/1000 - this,
          str  = '';
      options = options || {};
      diff    = diff < 0 ? 0 : diff;
      if(diff < 60)
        str = Math.round(diff) + 's';
      else if(diff < 3600) {
    ...