/var/www/qr4y.gr/server/delivery/node_modules/moment/src/lib/moment
NameSizeModeActions
add-subtract.js18690644editdlrm
calendar.js17370644editdlrm
clone.js980644editdlrm
compare.js23790644editdlrm
constructor.js21060644editdlrm
creation-data.js1920644editdlrm
diff.js23450644editdlrm
format.js23400644editdlrm
from.js6090644editdlrm
get-set.js20410644editdlrm
locale.js9460644editdlrm
min-max.js19220644editdlrm
moment.js6090644editdlrm
now.js820644editdlrm
prototype.js55110644editdlrm
start-end-of.js48190644editdlrm
to-type.js8340644editdlrm
to.js6030644editdlrm
valid.js3640644editdlrm
Edit: /var/www/qr4y.gr/server/delivery/node_modules/moment/src/lib/moment/locale.js (946B)
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; }