From 4996b6b3e2a9e571e15ee7b032b829d29a8edb79 Mon Sep 17 00:00:00 2001 From: Tim Wood Date: Thu, 24 May 2012 18:06:08 -0700 Subject: [PATCH] =?utf8?q?Trimming=20some=20bytes=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- moment.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/moment.js b/moment.js index 3f076171f..f1b716c1c 100644 --- a/moment.js +++ b/moment.js @@ -90,10 +90,10 @@ YYYY : 't.year()', a : 'm?m(t.hours(),t.minutes(),!1):t.hours()>11?"pm":"am"', A : 'm?m(t.hours(),t.minutes(),!0):t.hours()>11?"PM":"AM"', - H : '(a=t.hours())', - h : '(a=t.hours()%12||12)', - m : '(a=t.minutes())', - s : '(a=t.seconds())', + H : 't.hours()', + h : 't.hours()%12||12', + m : 't.minutes()', + s : 't.seconds()', S : '~~(t.milliseconds()/100)', SS : 'p(~~(t.milliseconds()/10),2)', SSS : 'p(t.milliseconds(),3)', -- 2.47.2