You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • Argh. Thanks for letting me know - it was a mistake in the code where getSeconds got exported over the top of getMinutes. It'll be fixed in 1v66, but it should be relatively easy to fake with:

    Date.prototype.getSeconds = function() {
      return (0|(this.ms/1000))%60;
    }
    
About

Avatar for Gordon @Gordon started