repo
stringlengths
5
106
file_url
stringlengths
78
301
file_path
stringlengths
4
211
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:56:49
2026-01-05 02:23:25
truncated
bool
2 classes
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/locale/set.js
clean_server/resources/app/node_modules/moment/src/lib/locale/set.js
import isFunction from '../utils/is-function'; import extend from '../utils/extend'; import isObject from '../utils/is-object'; import hasOwnProp from '../utils/has-own-prop'; export function set (config) { var prop, i; for (i in config) { prop = config[i]; if (isFunction(prop)) { t...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/locale/constructor.js
clean_server/resources/app/node_modules/moment/src/lib/locale/constructor.js
export function Locale(config) { if (config != null) { this.set(config); } }
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/locale/base-config.js
clean_server/resources/app/node_modules/moment/src/lib/locale/base-config.js
import { defaultCalendar } from './calendar'; import { defaultLongDateFormat } from './formats'; import { defaultInvalidDate } from './invalid'; import { defaultOrdinal, defaultDayOfMonthOrdinalParse } from './ordinal'; import { defaultRelativeTime } from './relative'; // months import { defaultLocaleMonths, d...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/format/format.js
clean_server/resources/app/node_modules/moment/src/lib/format/format.js
import zeroFill from '../utils/zero-fill'; import isFunction from '../utils/is-function'; export var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g; var localForma...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/create/from-array.js
clean_server/resources/app/node_modules/moment/src/lib/create/from-array.js
import { hooks } from '../utils/hooks'; import { createDate, createUTCDate } from './date-from-array'; import { daysInYear } from '../units/year'; import { weekOfYear, weeksInYear, dayOfYearFromWeeks } from '../units/week-calendar-utils'; import { YEAR, MONTH, DATE, HOUR, MINUTE, SECOND, MILLISECOND } from '../units/co...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/create/utc.js
clean_server/resources/app/node_modules/moment/src/lib/create/utc.js
import { createLocalOrUTC } from './from-anything'; export function createUTC (input, format, locale, strict) { return createLocalOrUTC(input, format, locale, strict, true).utc(); }
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/create/from-object.js
clean_server/resources/app/node_modules/moment/src/lib/create/from-object.js
import { normalizeObjectUnits } from '../units/aliases'; import { configFromArray } from './from-array'; import map from '../utils/map'; export function configFromObject(config) { if (config._d) { return; } var i = normalizeObjectUnits(config._i); config._a = map([i.year, i.month, i.day || i.d...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/create/from-string.js
clean_server/resources/app/node_modules/moment/src/lib/create/from-string.js
import { configFromStringAndFormat } from './from-string-and-format'; import { hooks } from '../utils/hooks'; import { deprecate } from '../utils/deprecate'; import getParsingFlags from './parsing-flags'; // iso 8601 regex // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/create/parsing-flags.js
clean_server/resources/app/node_modules/moment/src/lib/create/parsing-flags.js
function defaultParsingFlags() { // We need to deep clone this object. return { empty : false, unusedTokens : [], unusedInput : [], overflow : -2, charsLeftOver : 0, nullInput : false, invalidMonth : null, invalid...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/create/check-overflow.js
clean_server/resources/app/node_modules/moment/src/lib/create/check-overflow.js
import { daysInMonth } from '../units/month'; import { YEAR, MONTH, DATE, HOUR, MINUTE, SECOND, MILLISECOND, WEEK, WEEKDAY } from '../units/constants'; import getParsingFlags from '../create/parsing-flags'; export default function checkOverflow (m) { var overflow; var a = m._a; if (a && getParsingFlags(m)...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/create/from-string-and-format.js
clean_server/resources/app/node_modules/moment/src/lib/create/from-string-and-format.js
import { configFromISO, configFromRFC2822 } from './from-string'; import { configFromArray } from './from-array'; import { getParseRegexForToken } from '../parse/regex'; import { addTimeToArrayFromToken } from '../parse/token'; import { expandFormat, formatTokenFunctions, formattingTokens } from '../format/format'; i...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/create/from-anything.js
clean_server/resources/app/node_modules/moment/src/lib/create/from-anything.js
import isArray from '../utils/is-array'; import isObject from '../utils/is-object'; import isObjectEmpty from '../utils/is-object-empty'; import isUndefined from '../utils/is-undefined'; import isNumber from '../utils/is-number'; import isDate from '../utils/is-date'; import map from '../utils/map'; import { createInva...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/create/date-from-array.js
clean_server/resources/app/node_modules/moment/src/lib/create/date-from-array.js
export function createDate (y, m, d, h, M, s, ms) { // can't just apply() to create a date: // https://stackoverflow.com/q/181348 var date = new Date(y, m, d, h, M, s, ms); // the date constructor remaps years 0-99 to 1900-1999 if (y < 100 && y >= 0 && isFinite(date.getFullYear())) { date.s...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/create/local.js
clean_server/resources/app/node_modules/moment/src/lib/create/local.js
import { createLocalOrUTC } from './from-anything'; export function createLocal (input, format, locale, strict) { return createLocalOrUTC(input, format, locale, strict, false); }
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/create/from-string-and-array.js
clean_server/resources/app/node_modules/moment/src/lib/create/from-string-and-array.js
import { copyConfig } from '../moment/constructor'; import { configFromStringAndFormat } from './from-string-and-format'; import getParsingFlags from './parsing-flags'; import { isValid } from './valid'; import extend from '../utils/extend'; // date from string and array of format strings export function configFromStr...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/src/lib/create/valid.js
clean_server/resources/app/node_modules/moment/src/lib/create/valid.js
import extend from '../utils/extend'; import { createUTC } from './utc'; import getParsingFlags from '../create/parsing-flags'; import some from '../utils/some'; export function isValid(m) { if (m._isValid == null) { var flags = getParsingFlags(m); var parsedParts = some.call(flags.parsedDateParts,...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/ko.js
clean_server/resources/app/node_modules/moment/locale/ko.js
//! moment.js locale configuration //! locale : Korean [ko] //! author : Kyungwook, Park : https://github.com/kyungw00k //! author : Jeeeyul Lee <jeeeyul@gmail.com> ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/hy-am.js
clean_server/resources/app/node_modules/moment/locale/hy-am.js
//! moment.js locale configuration //! locale : Armenian [hy-am] //! author : Armendarabyan : https://github.com/armendarabyan ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'f...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/sl.js
clean_server/resources/app/node_modules/moment/locale/sl.js
//! moment.js locale configuration //! locale : Slovenian [sl] //! author : Robert Sedovšek : https://github.com/sedovsek ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'functi...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/yo.js
clean_server/resources/app/node_modules/moment/locale/yo.js
//! moment.js locale configuration //! locale : Yoruba Nigeria [yo] //! author : Atolagbe Abisoye : https://github.com/andela-batolagbe ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof defi...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/tzm-latn.js
clean_server/resources/app/node_modules/moment/locale/tzm-latn.js
//! moment.js locale configuration //! locale : Central Atlas Tamazight Latin [tzm-latn] //! author : Abdel Said : https://github.com/abdelsaid ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/nb.js
clean_server/resources/app/node_modules/moment/locale/nb.js
//! moment.js locale configuration //! locale : Norwegian Bokmål [nb] //! authors : Espen Hovlandsdal : https://github.com/rexxars //! Sigurd Gartmann : https://github.com/sigurdga ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'fun...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/fa.js
clean_server/resources/app/node_modules/moment/locale/fa.js
//! moment.js locale configuration //! locale : Persian [fa] //! author : Ebrahim Byagowi : https://github.com/ebraminio ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'functio...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/es-do.js
clean_server/resources/app/node_modules/moment/locale/es-do.js
//! moment.js locale configuration //! locale : Spanish (Dominican Republic) [es-do] ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && define.amd ? define(['../momen...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/en-gb.js
clean_server/resources/app/node_modules/moment/locale/en-gb.js
//! moment.js locale configuration //! locale : English (United Kingdom) [en-gb] //! author : Chris Gedrim : https://github.com/chrisgedrim ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/ar.js
clean_server/resources/app/node_modules/moment/locale/ar.js
//! moment.js locale configuration //! locale : Arabic [ar] //! author : Abdel Said: https://github.com/abdelsaid //! author : Ahmed Elkhatib //! author : forabi https://github.com/forabi ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'functi...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/kn.js
clean_server/resources/app/node_modules/moment/locale/kn.js
//! moment.js locale configuration //! locale : Kannada [kn] //! author : Rajeev Naik : https://github.com/rajeevnaikte ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/fr-ca.js
clean_server/resources/app/node_modules/moment/locale/fr-ca.js
//! moment.js locale configuration //! locale : French (Canada) [fr-ca] //! author : Jonathan Abourbih : https://github.com/jonbca ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define ==...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/tet.js
clean_server/resources/app/node_modules/moment/locale/tet.js
//! moment.js locale configuration //! locale : Tetun Dili (East Timor) [tet] //! author : Joshua Brooks : https://github.com/joshbrooks //! author : Onorio De J. Afonso : https://github.com/marobo ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require =...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/si.js
clean_server/resources/app/node_modules/moment/locale/si.js
//! moment.js locale configuration //! locale : Sinhalese [si] //! author : Sampath Sitinamaluwa : https://github.com/sampathsris ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define ===...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/eo.js
clean_server/resources/app/node_modules/moment/locale/eo.js
//! moment.js locale configuration //! locale : Esperanto [eo] //! author : Colin Dean : https://github.com/colindean //! author : Mia Nordentoft Imperatori : https://github.com/miestasmia //! comment : miestasmia corrected the translation by colindean ;(function (global, factory) { typeof exports === 'object' && t...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/lt.js
clean_server/resources/app/node_modules/moment/locale/lt.js
//! moment.js locale configuration //! locale : Lithuanian [lt] //! author : Mindaugas Mozūras : https://github.com/mmozuras ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'fun...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/tzl.js
clean_server/resources/app/node_modules/moment/locale/tzl.js
//! moment.js locale configuration //! locale : Talossan [tzl] //! author : Robin van der Vliet : https://github.com/robin0van0der0v //! author : Iustì Canun ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../mome...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/bo.js
clean_server/resources/app/node_modules/moment/locale/bo.js
//! moment.js locale configuration //! locale : Tibetan [bo] //! author : Thupten N. Chakrishar : https://github.com/vajradog ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'fu...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/hi.js
clean_server/resources/app/node_modules/moment/locale/hi.js
//! moment.js locale configuration //! locale : Hindi [hi] //! author : Mayank Singhal : https://github.com/mayanksinghal ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'functi...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/bg.js
clean_server/resources/app/node_modules/moment/locale/bg.js
//! moment.js locale configuration //! locale : Bulgarian [bg] //! author : Krasen Borisov : https://github.com/kraz ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' &...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/ky.js
clean_server/resources/app/node_modules/moment/locale/ky.js
//! moment.js locale configuration //! locale : Kyrgyz [ky] //! author : Chyngyz Arystan uulu : https://github.com/chyngyz ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'funct...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/eu.js
clean_server/resources/app/node_modules/moment/locale/eu.js
//! moment.js locale configuration //! locale : Basque [eu] //! author : Eneko Illarramendi : https://github.com/eillarra ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'functi...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/my.js
clean_server/resources/app/node_modules/moment/locale/my.js
//! moment.js locale configuration //! locale : Burmese [my] //! author : Squar team, mysquar.com //! author : David Rossellat : https://github.com/gholadr //! author : Tin Aung Lin : https://github.com/thanyawzinmin ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/tzm.js
clean_server/resources/app/node_modules/moment/locale/tzm.js
//! moment.js locale configuration //! locale : Central Atlas Tamazight [tzm] //! author : Abdel Said : https://github.com/abdelsaid ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/sr.js
clean_server/resources/app/node_modules/moment/locale/sr.js
//! moment.js locale configuration //! locale : Serbian [sr] //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/mi.js
clean_server/resources/app/node_modules/moment/locale/mi.js
//! moment.js locale configuration //! locale : Maori [mi] //! author : John Corrigan <robbiecloset@gmail.com> : https://github.com/johnideal ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeo...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/nl.js
clean_server/resources/app/node_modules/moment/locale/nl.js
//! moment.js locale configuration //! locale : Dutch [nl] //! author : Joris Röling : https://github.com/jorisroling //! author : Jacob Middag : https://github.com/middagj ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(r...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/mr.js
clean_server/resources/app/node_modules/moment/locale/mr.js
//! moment.js locale configuration //! locale : Marathi [mr] //! author : Harshad Kale : https://github.com/kalehv //! author : Vivek Athalye : https://github.com/vnathalye ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(r...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/dv.js
clean_server/resources/app/node_modules/moment/locale/dv.js
//! moment.js locale configuration //! locale : Maldivian [dv] //! author : Jawish Hameed : https://github.com/jawish ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/nn.js
clean_server/resources/app/node_modules/moment/locale/nn.js
//! moment.js locale configuration //! locale : Nynorsk [nn] //! author : https://github.com/mechuwind ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && define.amd ?...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/sr-cyrl.js
clean_server/resources/app/node_modules/moment/locale/sr-cyrl.js
//! moment.js locale configuration //! locale : Serbian Cyrillic [sr-cyrl] //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../m...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/pa-in.js
clean_server/resources/app/node_modules/moment/locale/pa-in.js
//! moment.js locale configuration //! locale : Punjabi (India) [pa-in] //! author : Harpreet Singh : https://github.com/harpreetkhalsagtbit ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/br.js
clean_server/resources/app/node_modules/moment/locale/br.js
//! moment.js locale configuration //! locale : Breton [br] //! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/th.js
clean_server/resources/app/node_modules/moment/locale/th.js
//! moment.js locale configuration //! locale : Thai [th] //! author : Kridsada Thanabulpong : https://github.com/sirn ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function'...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/da.js
clean_server/resources/app/node_modules/moment/locale/da.js
//! moment.js locale configuration //! locale : Danish [da] //! author : Ulrik Nielsen : https://github.com/mrbase ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/lo.js
clean_server/resources/app/node_modules/moment/locale/lo.js
//! moment.js locale configuration //! locale : Lao [lo] //! author : Ryan Hart : https://github.com/ryanhart2 ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && defi...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/x-pseudo.js
clean_server/resources/app/node_modules/moment/locale/x-pseudo.js
//! moment.js locale configuration //! locale : Pseudo [x-pseudo] //! author : Andrew Hood : https://github.com/andrewhood125 ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'fu...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/ro.js
clean_server/resources/app/node_modules/moment/locale/ro.js
//! moment.js locale configuration //! locale : Romanian [ro] //! author : Vlad Gurdiga : https://github.com/gurdiga //! author : Valentin Agachi : https://github.com/avaly ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(r...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/pt-br.js
clean_server/resources/app/node_modules/moment/locale/pt-br.js
//! moment.js locale configuration //! locale : Portuguese (Brazil) [pt-br] //! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/el.js
clean_server/resources/app/node_modules/moment/locale/el.js
//! moment.js locale configuration //! locale : Greek [el] //! author : Aggelos Karalias : https://github.com/mehiel ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' &...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/de-ch.js
clean_server/resources/app/node_modules/moment/locale/de-ch.js
//! moment.js locale configuration //! locale : German (Switzerland) [de-ch] //! author : sschueller : https://github.com/sschueller ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/fy.js
clean_server/resources/app/node_modules/moment/locale/fy.js
//! moment.js locale configuration //! locale : Frisian [fy] //! author : Robin van der Vliet : https://github.com/robin0van0der0v ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define ==...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/te.js
clean_server/resources/app/node_modules/moment/locale/te.js
//! moment.js locale configuration //! locale : Telugu [te] //! author : Krishna Chaitanya Thota : https://github.com/kcthota ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'fu...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/ms-my.js
clean_server/resources/app/node_modules/moment/locale/ms-my.js
//! moment.js locale configuration //! locale : Malay [ms-my] //! note : DEPRECATED, the correct one is [ms] //! author : Weldan Jamili : https://github.com/weldan ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('....
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/sw.js
clean_server/resources/app/node_modules/moment/locale/sw.js
//! moment.js locale configuration //! locale : Swahili [sw] //! author : Fahad Kassim : https://github.com/fadsel ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/hr.js
clean_server/resources/app/node_modules/moment/locale/hr.js
//! moment.js locale configuration //! locale : Croatian [hr] //! author : Bojan Marković : https://github.com/bmarkovic ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'functio...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/cv.js
clean_server/resources/app/node_modules/moment/locale/cv.js
//! moment.js locale configuration //! locale : Chuvash [cv] //! author : Anatoly Mironov : https://github.com/mirontoli ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'functio...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/zh-hk.js
clean_server/resources/app/node_modules/moment/locale/zh-hk.js
//! moment.js locale configuration //! locale : Chinese (Hong Kong) [zh-hk] //! author : Ben : https://github.com/ben-lin //! author : Chris Lam : https://github.com/hehachris //! author : Konstantin : https://github.com/skfd ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/ar-tn.js
clean_server/resources/app/node_modules/moment/locale/ar-tn.js
//! moment.js locale configuration //! locale : Arabic (Tunisia) [ar-tn] //! author : Nader Toukabri : https://github.com/naderio ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define =...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/pt.js
clean_server/resources/app/node_modules/moment/locale/pt.js
//! moment.js locale configuration //! locale : Portuguese [pt] //! author : Jefferson : https://github.com/jalex79 ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' &&...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/es.js
clean_server/resources/app/node_modules/moment/locale/es.js
//! moment.js locale configuration //! locale : Spanish [es] //! author : Julio Napurí : https://github.com/julionc ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' &&...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/is.js
clean_server/resources/app/node_modules/moment/locale/is.js
//! moment.js locale configuration //! locale : Icelandic [is] //! author : Hinrik Örn Sigurðsson : https://github.com/hinrik ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'fu...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/ta.js
clean_server/resources/app/node_modules/moment/locale/ta.js
//! moment.js locale configuration //! locale : Tamil [ta] //! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404 ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === '...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/me.js
clean_server/resources/app/node_modules/moment/locale/me.js
//! moment.js locale configuration //! locale : Montenegrin [me] //! author : Miodrag Nikač <miodrag@restartit.me> : https://github.com/miodragnikac ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/se.js
clean_server/resources/app/node_modules/moment/locale/se.js
//! moment.js locale configuration //! locale : Northern Sami [se] //! authors : Bård Rolstad Henriksen : https://github.com/karamell ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/nl-be.js
clean_server/resources/app/node_modules/moment/locale/nl-be.js
//! moment.js locale configuration //! locale : Dutch (Belgium) [nl-be] //! author : Joris Röling : https://github.com/jorisroling //! author : Jacob Middag : https://github.com/middagj ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/cy.js
clean_server/resources/app/node_modules/moment/locale/cy.js
//! moment.js locale configuration //! locale : Welsh [cy] //! author : Robert Allen : https://github.com/robgallen //! author : https://github.com/ryangreaves ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../mo...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/fo.js
clean_server/resources/app/node_modules/moment/locale/fo.js
//! moment.js locale configuration //! locale : Faroese [fo] //! author : Ragnar Johannesen : https://github.com/ragnar123 ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'funct...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/gom-latn.js
clean_server/resources/app/node_modules/moment/locale/gom-latn.js
//! moment.js locale configuration //! locale : Konkani Latin script [gom-latn] //! author : The Discoverer : https://github.com/WikiDiscoverer ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/zh-tw.js
clean_server/resources/app/node_modules/moment/locale/zh-tw.js
//! moment.js locale configuration //! locale : Chinese (Taiwan) [zh-tw] //! author : Ben : https://github.com/ben-lin //! author : Chris Lam : https://github.com/hehachris ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(r...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/de.js
clean_server/resources/app/node_modules/moment/locale/de.js
//! moment.js locale configuration //! locale : German [de] //! author : lluchs : https://github.com/lluchs //! author: Menelion Elensúle: https://github.com/Oire //! author : Mikolaj Dadela : https://github.com/mik01aj ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/sq.js
clean_server/resources/app/node_modules/moment/locale/sq.js
//! moment.js locale configuration //! locale : Albanian [sq] //! author : Flakërim Ismani : https://github.com/flakerimi //! author : Menelion Elensúle : https://github.com/Oire //! author : Oerd Cukalla : https://github.com/oerd ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'unde...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/tlh.js
clean_server/resources/app/node_modules/moment/locale/tlh.js
//! moment.js locale configuration //! locale : Klingon [tlh] //! author : Dominika Kruk : https://github.com/amaranthrose ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'funct...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/lv.js
clean_server/resources/app/node_modules/moment/locale/lv.js
//! moment.js locale configuration //! locale : Latvian [lv] //! author : Kristaps Karlsons : https://github.com/skakri //! author : Jānis Elmeris : https://github.com/JanisE ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/fr-ch.js
clean_server/resources/app/node_modules/moment/locale/fr-ch.js
//! moment.js locale configuration //! locale : French (Switzerland) [fr-ch] //! author : Gaspard Bucher : https://github.com/gaspard ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/sd.js
clean_server/resources/app/node_modules/moment/locale/sd.js
//! moment.js locale configuration //! locale : Sindhi [sd] //! author : Narain Sagar : https://github.com/narainsagar ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function'...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/lb.js
clean_server/resources/app/node_modules/moment/locale/lb.js
//! moment.js locale configuration //! locale : Luxembourgish [lb] //! author : mweimerskirch : https://github.com/mweimerskirch //! author : David Raison : https://github.com/kwisatz ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/ne.js
clean_server/resources/app/node_modules/moment/locale/ne.js
//! moment.js locale configuration //! locale : Nepalese [ne] //! author : suvash : https://github.com/suvash ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && defin...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/hu.js
clean_server/resources/app/node_modules/moment/locale/hu.js
//! moment.js locale configuration //! locale : Hungarian [hu] //! author : Adam Brunner : https://github.com/adambrunner ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'functi...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/id.js
clean_server/resources/app/node_modules/moment/locale/id.js
//! moment.js locale configuration //! locale : Indonesian [id] //! author : Mohammad Satrio Utomo : https://github.com/tyok //! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined'...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/bs.js
clean_server/resources/app/node_modules/moment/locale/bs.js
//! moment.js locale configuration //! locale : Bosnian [bs] //! author : Nedim Cholich : https://github.com/frontyard //! based on (hr) translation by Bojan Marković ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/tl-ph.js
clean_server/resources/app/node_modules/moment/locale/tl-ph.js
//! moment.js locale configuration //! locale : Tagalog (Philippines) [tl-ph] //! author : Dan Hagman : https://github.com/hagmandan ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/zh-cn.js
clean_server/resources/app/node_modules/moment/locale/zh-cn.js
//! moment.js locale configuration //! locale : Chinese (China) [zh-cn] //! author : suupic : https://github.com/suupic //! author : Zeno Zeng : https://github.com/zenozeng ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(r...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/tr.js
clean_server/resources/app/node_modules/moment/locale/tr.js
//! moment.js locale configuration //! locale : Turkish [tr] //! authors : Erhan Gundogan : https://github.com/erhangundogan, //! Burak Yiğit Kaya: https://github.com/BYK ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? f...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/fr.js
clean_server/resources/app/node_modules/moment/locale/fr.js
//! moment.js locale configuration //! locale : French [fr] //! author : John Fischer : https://github.com/jfroffice ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' &...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/ml.js
clean_server/resources/app/node_modules/moment/locale/ml.js
//! moment.js locale configuration //! locale : Malayalam [ml] //! author : Floyd Pink : https://github.com/floydpink ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/be.js
clean_server/resources/app/node_modules/moment/locale/be.js
//! moment.js locale configuration //! locale : Belarusian [be] //! author : Dmitry Demidov : https://github.com/demidov91 //! author: Praleska: http://praleska.pro/ //! Author : Menelion Elensúle : https://github.com/Oire ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/de-at.js
clean_server/resources/app/node_modules/moment/locale/de-at.js
//! moment.js locale configuration //! locale : German (Austria) [de-at] //! author : lluchs : https://github.com/lluchs //! author: Menelion Elensúle: https://github.com/Oire //! author : Martin Groller : https://github.com/MadMG //! author : Mikolaj Dadela : https://github.com/mik01aj ;(function (global, factory) { ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/km.js
clean_server/resources/app/node_modules/moment/locale/km.js
//! moment.js locale configuration //! locale : Cambodian [km] //! author : Kruy Vanna : https://github.com/kruyvanna ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/he.js
clean_server/resources/app/node_modules/moment/locale/he.js
//! moment.js locale configuration //! locale : Hebrew [he] //! author : Tomer Cohen : https://github.com/tomer //! author : Moshe Simantov : https://github.com/DevelopmentIL //! author : Tal Ater : https://github.com/TalAter ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/pl.js
clean_server/resources/app/node_modules/moment/locale/pl.js
//! moment.js locale configuration //! locale : Polish [pl] //! author : Rafal Hirsz : https://github.com/evoL ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && defi...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/ms.js
clean_server/resources/app/node_modules/moment/locale/ms.js
//! moment.js locale configuration //! locale : Malay [ms] //! author : Weldan Jamili : https://github.com/weldan ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && d...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/ur.js
clean_server/resources/app/node_modules/moment/locale/ur.js
//! moment.js locale configuration //! locale : Urdu [ur] //! author : Sawood Alam : https://github.com/ibnesayeed //! author : Zack : https://github.com/ZackVision ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/moment/locale/en-ie.js
clean_server/resources/app/node_modules/moment/locale/en-ie.js
//! moment.js locale configuration //! locale : English (Ireland) [en-ie] //! author : Chris Cartlidge : https://github.com/chriscartlidge ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof d...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false