/home/techb158/workloadmatch.com/bower_components/moment/src/lib/moment
NameSizeModeActions
add-subtract.js17790777editdlrm
calendar.js10600777editdlrm
clone.js990777editdlrm
compare.js21350777editdlrm
constructor.js20750777editdlrm
creation-data.js1910777editdlrm
diff.js19880777editdlrm
format.js18420777editdlrm
from.js5860777editdlrm
get-set.js14290777editdlrm
locale.js9480777editdlrm
min-max.js18520777editdlrm
moment.js6100777editdlrm
now.js840777editdlrm
prototype.js54700777editdlrm
start-end-of.js14940777editdlrm
to-type.js7780777editdlrm
to.js5800777editdlrm
valid.js3670777editdlrm
Edit: /home/techb158/workloadmatch.com/bower_components/moment/src/lib/moment/locale.js (948B)
import { getLocale } from '../locale/locales'; import { deprecate } from '../utils/deprecate'; // If passed a locale key, it will set the locale for this // instance. Otherwise, it will return the locale configuration // variables for this instance. export function locale (key) { var newLocaleData; if (key === undefined) { return this._locale._abbr; } else { newLocaleData = getLocale(key); if (newLocaleData != null) { this._locale = newLocaleData; } return this; } } export var lang = deprecate( 'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', function (key) { if (key === undefined) { return this.localeData(); } else { return this.locale(key); } } ); export function localeData () { return this._locale; }