/home/techb158/workloadmatch.com/workloadmatch.com/bower_components/moment/src/lib/moment
NameSizeModeActions
add-subtract.js17790644editdlrm
calendar.js10600644editdlrm
clone.js990644editdlrm
compare.js21350644editdlrm
constructor.js20750644editdlrm
creation-data.js1910644editdlrm
diff.js19880644editdlrm
format.js18420644editdlrm
from.js5860644editdlrm
get-set.js14290644editdlrm
locale.js9480644editdlrm
min-max.js18520644editdlrm
moment.js6100644editdlrm
now.js840644editdlrm
prototype.js54700644editdlrm
start-end-of.js14940644editdlrm
to-type.js7780644editdlrm
to.js5800644editdlrm
valid.js3670644editdlrm
Edit: /home/techb158/workloadmatch.com/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; }