summaryrefslogtreecommitdiff
path: root/www/lib/moment/src/lib/locale/calendar.js
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
committerPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
commit210e8feae2fb4842bfb2de38666e6c41671fef3c (patch)
treecbdafa34b1a6260bb20236d7e9de9eb1b690a1c5 /www/lib/moment/src/lib/locale/calendar.js
parente7e7baeaad90229ccb3e0f45f4ebd77be7d79b14 (diff)
removed lib
Diffstat (limited to 'www/lib/moment/src/lib/locale/calendar.js')
-rw-r--r--www/lib/moment/src/lib/locale/calendar.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/www/lib/moment/src/lib/locale/calendar.js b/www/lib/moment/src/lib/locale/calendar.js
deleted file mode 100644
index 22545b96..00000000
--- a/www/lib/moment/src/lib/locale/calendar.js
+++ /dev/null
@@ -1,13 +0,0 @@
-export var defaultCalendar = {
- sameDay : '[Today at] LT',
- nextDay : '[Tomorrow at] LT',
- nextWeek : 'dddd [at] LT',
- lastDay : '[Yesterday at] LT',
- lastWeek : '[Last] dddd [at] LT',
- sameElse : 'L'
-};
-
-export function calendar (key, mom, now) {
- var output = this._calendar[key];
- return typeof output === 'function' ? output.call(mom, now) : output;
-}