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
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/duration/abs.js
src/lib/duration/abs.js
var mathAbs = Math.abs; export function abs() { var data = this._data; this._milliseconds = mathAbs(this._milliseconds); this._days = mathAbs(this._days); this._months = mathAbs(this._months); data.milliseconds = mathAbs(data.milliseconds); data.seconds = mathAbs(data.seconds); data.minut...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/duration/prototype.js
src/lib/duration/prototype.js
import { Duration } from './constructor'; var proto = Duration.prototype; import { abs } from './abs'; import { add, subtract } from './add-subtract'; import { as, asMilliseconds, asSeconds, asMinutes, asHours, asDays, asWeeks, asMonths, asQuarters, asYears, valueOf, } from...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/duration/create.js
src/lib/duration/create.js
import { Duration, isDuration } from './constructor'; import isNumber from '../utils/is-number'; import toInt from '../utils/to-int'; import absRound from '../utils/abs-round'; import hasOwnProp from '../utils/has-own-prop'; import { DATE, HOUR, MINUTE, SECOND, MILLISECOND } from '../units/constants'; import { cloneWit...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/duration/duration.js
src/lib/duration/duration.js
// Side effect imports import './prototype'; import { createDuration } from './create'; import { isDuration } from './constructor'; import { getSetRelativeTimeRounding, getSetRelativeTimeThreshold, } from './humanize'; export { createDuration, isDuration, getSetRelativeTimeRounding, getSetRela...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/duration/add-subtract.js
src/lib/duration/add-subtract.js
import { createDuration } from './create'; function addSubtract(duration, input, value, direction) { var other = createDuration(input, value); duration._milliseconds += direction * other._milliseconds; duration._days += direction * other._days; duration._months += direction * other._months; retur...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/duration/constructor.js
src/lib/duration/constructor.js
import { normalizeObjectUnits } from '../units/aliases'; import { getLocale } from '../locale/locales'; import isDurationValid from './valid.js'; export function Duration(duration) { var normalizedInput = normalizeObjectUnits(duration), years = normalizedInput.year || 0, quarters = normalizedInput....
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/duration/iso-string.js
src/lib/duration/iso-string.js
import absFloor from '../utils/abs-floor'; var abs = Math.abs; function sign(x) { return (x > 0) - (x < 0) || +x; } export function toISOString() { // for ISO strings we do not use the normal bubbling rules: // * milliseconds bubble up until they become hours // * days do not bubble at all // *...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/duration/bubble.js
src/lib/duration/bubble.js
import absFloor from '../utils/abs-floor'; import absCeil from '../utils/abs-ceil'; export function bubble() { var milliseconds = this._milliseconds, days = this._days, months = this._months, data = this._data, seconds, minutes, hours, years, monthsFr...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/duration/valid.js
src/lib/duration/valid.js
import hasOwnProp from '../utils/has-own-prop'; import toInt from '../utils/to-int'; import indexOf from '../utils/index-of'; import { createDuration } from './create'; var ordering = [ 'year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond', ]; export ...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/duration/get.js
src/lib/duration/get.js
import { normalizeUnits } from '../units/aliases'; import absFloor from '../utils/abs-floor'; export function get(units) { units = normalizeUnits(units); return this.isValid() ? this[units + 's']() : NaN; } function makeGetter(name) { return function () { return this.isValid() ? this._data[name] :...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/locale.js
src/lib/locale/locale.js
// Side effect imports import './prototype'; import { getSetGlobalLocale, defineLocale, updateLocale, getLocale, listLocales, } from './locales'; import { listMonths, listMonthsShort, listWeekdays, listWeekdaysShort, listWeekdaysMin, } from './lists'; export { getSetGlobal...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/calendar.js
src/lib/locale/calendar.js
export var defaultCalendar = { sameDay: '[Today at] LT', nextDay: '[Tomorrow at] LT', nextWeek: 'dddd [at] LT', lastDay: '[Yesterday at] LT', lastWeek: '[Last] dddd [at] LT', sameElse: 'L', }; import isFunction from '../utils/is-function'; export function calendar(key, mom, now) { var outp...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/lists.js
src/lib/locale/lists.js
import isNumber from '../utils/is-number'; import { getLocale } from './locales'; import { createUTC } from '../create/utc'; function get(format, index, field, setter) { var locale = getLocale(), utc = createUTC().set(setter, index); return locale[field](utc, format); } function listMonthsImpl(format,...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/locales.js
src/lib/locale/locales.js
import isArray from '../utils/is-array'; import isUndefined from '../utils/is-undefined'; import { deprecateSimple } from '../utils/deprecate'; import { mergeConfigs } from './set'; import { Locale } from './constructor'; import keys from '../utils/keys'; import { baseConfig } from './base-config'; // internal storag...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/invalid.js
src/lib/locale/invalid.js
export var defaultInvalidDate = 'Invalid date'; export function invalidDate() { return this._invalidDate; }
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/en.js
src/lib/locale/en.js
import './prototype'; import { getSetGlobalLocale } from './locales'; import toInt from '../utils/to-int'; getSetGlobalLocale('en', { eras: [ { since: '0001-01-01', until: +Infinity, offset: 1, name: 'Anno Domini', narrow: 'AD', abbr: ...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/prototype.js
src/lib/locale/prototype.js
import { Locale } from './constructor'; var proto = Locale.prototype; import { calendar } from './calendar'; import { longDateFormat } from './formats'; import { invalidDate } from './invalid'; import { ordinal } from './ordinal'; import { preParsePostFormat } from './pre-post-format'; import { relativeTime, pastFutu...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/pre-post-format.js
src/lib/locale/pre-post-format.js
export function preParsePostFormat(string) { return string; }
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/relative.js
src/lib/locale/relative.js
export var defaultRelativeTime = { future: 'in %s', past: '%s ago', s: 'a few seconds', ss: '%d seconds', m: 'a minute', mm: '%d minutes', h: 'an hour', hh: '%d hours', d: 'a day', dd: '%d days', w: 'a week', ww: '%d weeks', M: 'a month', MM: '%d months', y: '...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/ordinal.js
src/lib/locale/ordinal.js
var defaultOrdinal = '%d', defaultDayOfMonthOrdinalParse = /\d{1,2}/; export { defaultOrdinal, defaultDayOfMonthOrdinalParse }; export function ordinal(number) { return this._ordinal.replace('%d', number); }
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/formats.js
src/lib/locale/formats.js
import { formattingTokens } from '../format/format'; export var defaultLongDateFormat = { LTS: 'h:mm:ss A', LT: 'h:mm A', L: 'MM/DD/YYYY', LL: 'MMMM D, YYYY', LLL: 'MMMM D, YYYY h:mm A', LLLL: 'dddd, MMMM D, YYYY h:mm A', }; export function longDateFormat(key) { var format = this._longDate...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/set.js
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) { if (hasOwnProp(config, i)) { prop = config[i]; ...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/constructor.js
src/lib/locale/constructor.js
export function Locale(config) { if (config != null) { this.set(config); } }
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/locale/base-config.js
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, defaultLo...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/format/format.js
src/lib/format/format.js
import zeroFill from '../utils/zero-fill'; import isFunction from '../utils/is-function'; var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/create/from-array.js
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, SE...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/create/utc.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/create/from-object.js
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), dayOrDate = i.day === undefined ? i.date :...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/create/from-string.js
src/lib/create/from-string.js
import { configFromStringAndFormat } from './from-string-and-format'; import { createUTCDate } from './date-from-array'; import { hooks } from '../utils/hooks'; import { deprecate } from '../utils/deprecate'; import getParsingFlags from './parsing-flags'; import { defaultLocaleMonthsShort } from '../units/month'; impor...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/create/parsing-flags.js
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, invalidEra: null, invalidMonth: null, invalidFormat: false, ...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/create/check-overflow.js
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, a = m....
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/create/from-string-and-format.js
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...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/create/from-anything.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/create/date-from-array.js
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; // the date constructor remaps years 0-99 to 1900-1999 if (y < 100 && y >= 0) { // preserve leap years using a full 400 year cycle, then reset da...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/create/local.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/create/from-string-and-array.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/src/lib/create/valid.js
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) { var flags = null, parsedParts = false, isNowValid = m._d && !isNaN(m._d.getTime()); if (isNowValid) { ...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/ko.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/hy-am.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/sl.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/yo.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/bm.js
locale/bm.js
//! moment.js locale configuration //! locale : Bambara [bm] //! author : Estelle Comment : https://github.com/estellecomment ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'fu...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/tzm-latn.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/nb.js
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 //! Stephen Ramthun : https://github.com/stephenramthun ;(function (global, factory) { typeof exports === 'object' ...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/fa.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/mt.js
locale/mt.js
//! moment.js locale configuration //! locale : Maltese (Malta) [mt] //! author : Alessandro Maruccia : https://github.com/alesma ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define ===...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/es-do.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/en-gb.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/ar.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/kn.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/fr-ca.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/tet.js
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 //! author : Sonia Simoes : https://github.com/soniasimoes ;(function (global, factory) { typeof exports === 'object' ...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/si.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/eo.js
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 //! comment : Vivakvo corrected the translation by colindean and mi...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/lt.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/tg.js
locale/tg.js
//! moment.js locale configuration //! locale : Tajik [tg] //! author : Orif N. Jr. : https://github.com/orif-jr ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && de...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/tzl.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/bo.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/hi.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/bg.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/ky.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/eu.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/my.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/tzm.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/sr.js
locale/sr.js
//! moment.js locale configuration //! locale : Serbian [sr] //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j //! author : Stefan Crnjaković <stefan@hotmail.rs> : https://github.com/crnjakovic ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undef...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/gu.js
locale/gu.js
//! moment.js locale configuration //! locale : Gujarati [gu] //! author : Kaushik Thanki : https://github.com/Kaushik1987 ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'funct...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/mi.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/nl.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/mr.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/dv.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/nn.js
locale/nn.js
//! moment.js locale configuration //! locale : Nynorsk [nn] //! authors : https://github.com/mechuwind //! Stephen Ramthun : https://github.com/stephenramthun ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(requ...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/sr-cyrl.js
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 //! author : Stefan Crnjaković <stefan@hotmail.rs> : https://github.com/crnjakovic ;(function (global, factory) { typeof exports === 'object' && typeof mod...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/pa-in.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/br.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/bn-bd.js
locale/bn-bd.js
//! moment.js locale configuration //! locale : Bengali (Bangladesh) [bn-bd] //! author : Asraf Hossain Patoary : https://github.com/ashwoolford ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : ty...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/gom-deva.js
locale/gom-deva.js
//! moment.js locale configuration //! locale : Konkani Devanagari script [gom-deva] //! author : The Discoverer : https://github.com/WikiDiscoverer ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : ...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/th.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/da.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/es-us.js
locale/es-us.js
//! moment.js locale configuration //! locale : Spanish (United States) [es-us] //! author : bustta : https://github.com/bustta //! author : chrisrodz : https://github.com/chrisrodz ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? ...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/lo.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/x-pseudo.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/es-mx.js
locale/es-mx.js
//! moment.js locale configuration //! locale : Spanish (Mexico) [es-mx] //! author : JC Franco : https://github.com/jcfranco ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'fu...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/ro.js
locale/ro.js
//! moment.js locale configuration //! locale : Romanian [ro] //! author : Vlad Gurdiga : https://github.com/gurdiga //! author : Valentin Agachi : https://github.com/avaly //! author : Emanuel Cepoi : https://github.com/cepem ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefine...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/tk.js
locale/tk.js
//! moment.js locale configuration //! locale : Turkmen [tk] //! author : Atamyrat Abdyrahmanov : https://github.com/atamyratabdy ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define ===...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/pt-br.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/el.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/de-ch.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/fil.js
locale/fil.js
//! moment.js locale configuration //! locale : Filipino [fil] //! author : Dan Hagman : https://github.com/hagmandan //! author : Matthew Co : https://github.com/matthewdeeco ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factor...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/fy.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/te.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/ms-my.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/sw.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/hr.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/cv.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/zh-hk.js
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 //! author : Anthony : https://github.com/anthonylau ;(function (global, factory) { typeof...
javascript
MIT
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/ar-tn.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/pt.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/es.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/is.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false
moment/moment
https://github.com/moment/moment/blob/18aba135ab927ffe7f868ee09276979bed6993a6/locale/ta.js
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
18aba135ab927ffe7f868ee09276979bed6993a6
2026-01-04T14:57:37.850382Z
false