From 30fd95dbba29f6b4c29b51281f2b6f6ca2819b8b Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 16 Mar 2015 18:02:54 -0700 Subject: [PATCH] vapourize some stray semicolons --- strftime.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/strftime.js b/strftime.js index e20e4c1..37635ab 100644 --- a/strftime.js +++ b/strftime.js @@ -113,7 +113,7 @@ var strftime = (locale ? defaultStrftime.localize(locale) : defaultStrftime).timezone(timezone); return strftime(fmt, d); - }; + } var utcStrftime = defaultStrftime.utc(); function deprecatedStrftimeUTC(fmt, d, locale) { @@ -125,12 +125,12 @@ } var strftime = locale ? utcStrftime.localize(locale) : utcStrftime; return strftime(fmt, d); - }; + } function deprecatedStrftimeLocalized(locale) { deprecationWarning("`" + _require + ".localizedStrftime(locale)`", _require + ".localize(locale)"); return defaultStrftime.localize(locale); - }; + } // End of deprecated API // Polyfill Date.now for old browsers.