/home/techb158/workloadmatch.com/bower_components/moment/src/lib/locale
NameSizeModeActions
base-config.js11950777editdlrm
calendar.js4480777editdlrm
constructor.js930777editdlrm
en.js4540777editdlrm
formats.js5890777editdlrm
invalid.js1140777editdlrm
lists.js21960777editdlrm
locale.js8060777editdlrm
locales.js58010777editdlrm
ordinal.js1750777editdlrm
pre-post-format.js670777editdlrm
prototype.js20020777editdlrm
relative.js8300777editdlrm
set.js17240777editdlrm
Edit: /home/techb158/workloadmatch.com/bower_components/moment/src/lib/locale/en.js (454B)
import './prototype'; import { getSetGlobalLocale } from './locales'; import toInt from '../utils/to-int'; getSetGlobalLocale('en', { dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/, ordinal : function (number) { var b = number % 10, output = (toInt(number % 100 / 10) === 1) ? 'th' : (b === 1) ? 'st' : (b === 2) ? 'nd' : (b === 3) ? 'rd' : 'th'; return number + output; } });