Date.js
authorAlan Knowles <alan@roojs.com>
Wed, 20 Apr 2016 09:40:00 +0000 (17:40 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 20 Apr 2016 09:40:00 +0000 (17:40 +0800)
Date.js

diff --git a/Date.js b/Date.js
index dde1c86..a756ec5 100644 (file)
--- a/Date.js
+++ b/Date.js
@@ -775,7 +775,7 @@ document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
  */
 Date.prototype.add = function(interval, value){
   var d = this.clone();
-  if (!interval || value === 0) return d;
+  if (!interval || value === 0) { return d; }
   switch(interval.toLowerCase()){
     case Date.MILLI:
       d.setMilliseconds(this.getMilliseconds() + value);