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/scurrent_clean/app/dist/moment/src/lib/utils/index-of.js | scurrent_clean/app/dist/moment/src/lib/utils/index-of.js | var indexOf;
if (Array.prototype.indexOf) {
indexOf = Array.prototype.indexOf;
} else {
indexOf = function (o) {
// I know
var i;
for (i = 0; i < this.length; ++i) {
if (this[i] === o) {
return i;
}
}
return -1;
};
}
export { ... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/abs-ceil.js | scurrent_clean/app/dist/moment/src/lib/utils/abs-ceil.js | export default function absCeil (number) {
if (number < 0) {
return Math.floor(number);
} else {
return Math.ceil(number);
}
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/is-undefined.js | scurrent_clean/app/dist/moment/src/lib/utils/is-undefined.js | export default function isUndefined(input) {
return input === void 0;
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/map.js | scurrent_clean/app/dist/moment/src/lib/utils/map.js | export default function map(arr, fn) {
var res = [], i;
for (i = 0; i < arr.length; ++i) {
res.push(fn(arr[i], i));
}
return res;
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/to-int.js | scurrent_clean/app/dist/moment/src/lib/utils/to-int.js | import absFloor from './abs-floor';
export default function toInt(argumentForCoercion) {
var coercedNumber = +argumentForCoercion,
value = 0;
if (coercedNumber !== 0 && isFinite(coercedNumber)) {
value = absFloor(coercedNumber);
}
return value;
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/some.js | scurrent_clean/app/dist/moment/src/lib/utils/some.js | var some;
if (Array.prototype.some) {
some = Array.prototype.some;
} else {
some = function (fun) {
var t = Object(this);
var len = t.length >>> 0;
for (var i = 0; i < len; i++) {
if (i in t && fun.call(this, t[i], i, t)) {
return true;
}
... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/is-number.js | scurrent_clean/app/dist/moment/src/lib/utils/is-number.js | export default function isNumber(input) {
return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]';
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/deprecate.js | scurrent_clean/app/dist/moment/src/lib/utils/deprecate.js | import extend from './extend';
import { hooks } from './hooks';
import isUndefined from './is-undefined';
function warn(msg) {
if (hooks.suppressDeprecationWarnings === false &&
(typeof console !== 'undefined') && console.warn) {
console.warn('Deprecation warning: ' + msg);
}
}
export fun... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/abs-round.js | scurrent_clean/app/dist/moment/src/lib/utils/abs-round.js | export default function absRound (number) {
if (number < 0) {
return Math.round(-1 * number) * -1;
} else {
return Math.round(number);
}
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/is-array.js | scurrent_clean/app/dist/moment/src/lib/utils/is-array.js | export default function isArray(input) {
return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]';
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/is-object-empty.js | scurrent_clean/app/dist/moment/src/lib/utils/is-object-empty.js | export default function isObjectEmpty(obj) {
var k;
for (k in obj) {
// even if its not own property I'd still call it non-empty
return false;
}
return true;
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/defaults.js | scurrent_clean/app/dist/moment/src/lib/utils/defaults.js | // Pick the first defined of two or three arguments.
export default function defaults(a, b, c) {
if (a != null) {
return a;
}
if (b != null) {
return b;
}
return c;
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/hooks.js | scurrent_clean/app/dist/moment/src/lib/utils/hooks.js | export { hooks, setHookCallback };
var hookCallback;
function hooks () {
return hookCallback.apply(null, arguments);
}
// This is done to register the method called with moment()
// without creating circular dependencies.
function setHookCallback (callback) {
hookCallback = callback;
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/is-object.js | scurrent_clean/app/dist/moment/src/lib/utils/is-object.js | export default function isObject(input) {
// IE8 will treat undefined and null as object if it wasn't for
// input != null
return input != null && Object.prototype.toString.call(input) === '[object Object]';
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/zero-fill.js | scurrent_clean/app/dist/moment/src/lib/utils/zero-fill.js | export default function zeroFill(number, targetLength, forceSign) {
var absNumber = '' + Math.abs(number),
zerosToFill = targetLength - absNumber.length,
sign = number >= 0;
return (sign ? (forceSign ? '+' : '') : '-') +
Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNu... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/is-date.js | scurrent_clean/app/dist/moment/src/lib/utils/is-date.js | export default function isDate(input) {
return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]';
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/extend.js | scurrent_clean/app/dist/moment/src/lib/utils/extend.js | import hasOwnProp from './has-own-prop';
export default function extend(a, b) {
for (var i in b) {
if (hasOwnProp(b, i)) {
a[i] = b[i];
}
}
if (hasOwnProp(b, 'toString')) {
a.toString = b.toString;
}
if (hasOwnProp(b, 'valueOf')) {
a.valueOf = b.valueOf... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/has-own-prop.js | scurrent_clean/app/dist/moment/src/lib/utils/has-own-prop.js | export default function hasOwnProp(a, b) {
return Object.prototype.hasOwnProperty.call(a, b);
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/compare-arrays.js | scurrent_clean/app/dist/moment/src/lib/utils/compare-arrays.js | import toInt from './to-int';
// compare two arrays, return the number of differences
export default function compareArrays(array1, array2, dontConvert) {
var len = Math.min(array1.length, array2.length),
lengthDiff = Math.abs(array1.length - array2.length),
diffs = 0,
i;
for (i = 0; i ... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/utils/abs-floor.js | scurrent_clean/app/dist/moment/src/lib/utils/abs-floor.js | export default function absFloor (number) {
if (number < 0) {
// -0 -> 0
return Math.ceil(number) || 0;
} else {
return Math.floor(number);
}
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/duration/humanize.js | scurrent_clean/app/dist/moment/src/lib/duration/humanize.js | import { createDuration } from './create';
var round = Math.round;
var thresholds = {
ss: 44, // a few seconds to seconds
s : 45, // seconds to minute
m : 45, // minutes to hour
h : 22, // hours to day
d : 26, // days to month
M : 11 // months to... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/duration/as.js | scurrent_clean/app/dist/moment/src/lib/duration/as.js | import { daysToMonths, monthsToDays } from './bubble';
import { normalizeUnits } from '../units/aliases';
import toInt from '../utils/to-int';
export function as (units) {
if (!this.isValid()) {
return NaN;
}
var days;
var months;
var milliseconds = this._milliseconds;
units = normaliz... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/duration/abs.js | scurrent_clean/app/dist/moment/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 = mathA... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/duration/prototype.js | scurrent_clean/app/dist/moment/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, asYears, valueOf } from './as';
import { bubble } from './bubble';
import { get,... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/duration/create.js | scurrent_clean/app/dist/moment/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 | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/duration/duration.js | scurrent_clean/app/dist/moment/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,
getSetRelat... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/duration/add-subtract.js | scurrent_clean/app/dist/moment/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._mon... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/duration/constructor.js | scurrent_clean/app/dist/moment/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 | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/duration/iso-string.js | scurrent_clean/app/dist/moment/src/lib/duration/iso-string.js | import absFloor from '../utils/abs-floor';
var abs = Math.abs;
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
// * months bubble up until they become years
// This is b... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/duration/bubble.js | scurrent_clean/app/dist/moment/src/lib/duration/bubble.js | import absFloor from '../utils/abs-floor';
import absCeil from '../utils/abs-ceil';
import { createUTCDate } from '../create/date-from-array';
export function bubble () {
var milliseconds = this._milliseconds;
var days = this._days;
var months = this._months;
var data = this._data... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/duration/valid.js | scurrent_clean/app/dist/moment/src/lib/duration/valid.js | import toInt from '../utils/to-int';
import {Duration} from './constructor';
import {createDuration} from './create';
var ordering = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond'];
export default function isDurationValid(m) {
for (var key in m) {
if (!(ordering.inde... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/duration/get.js | scurrent_clean/app/dist/moment/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 | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/locale/locale.js | scurrent_clean/app/dist/moment/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 {
getSetGlobalLo... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/locale/calendar.js | scurrent_clean/app/dist/moment/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) {
va... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/locale/lists.js | scurrent_clean/app/dist/moment/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();
var utc = createUTC().set(setter, index);
return locale[field](utc, format);
}
function listMonthsImpl (forma... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/locale/locales.js | scurrent_clean/app/dist/moment/src/lib/locale/locales.js | import isArray from '../utils/is-array';
import hasOwnProp from '../utils/has-own-prop';
import isUndefined from '../utils/is-undefined';
import compareArrays from '../utils/compare-arrays';
import { deprecateSimple } from '../utils/deprecate';
import { mergeConfigs } from './set';
import { Locale } from './constructor... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/locale/invalid.js | scurrent_clean/app/dist/moment/src/lib/locale/invalid.js | export var defaultInvalidDate = 'Invalid date';
export function invalidDate () {
return this._invalidDate;
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/locale/en.js | scurrent_clean/app/dist/moment/src/lib/locale/en.js | import './prototype';
import { getSetGlobalLocale } from './locales';
import toInt from '../utils/to-int';
getSetGlobalLocale('en', {
dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/,
ordinal : function (number) {
var b = number % 10,
output = (toInt(number % 100 / 10) === 1) ? 'th' :
... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/locale/prototype.js | scurrent_clean/app/dist/moment/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 | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/locale/pre-post-format.js | scurrent_clean/app/dist/moment/src/lib/locale/pre-post-format.js | export function preParsePostFormat (string) {
return string;
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/locale/relative.js | scurrent_clean/app/dist/moment/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',
M : 'a month',
MM : '%d months',
y : 'a year',
yy ... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/locale/ordinal.js | scurrent_clean/app/dist/moment/src/lib/locale/ordinal.js | export var defaultOrdinal = '%d';
export var defaultDayOfMonthOrdinalParse = /\d{1,2}/;
export function ordinal (number) {
return this._ordinal.replace('%d', number);
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/locale/formats.js | scurrent_clean/app/dist/moment/src/lib/locale/formats.js | 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._longDateFormat[key],
formatUpper = this... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/src/lib/locale/set.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/locale/constructor.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/locale/base-config.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/format/format.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/create/from-array.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/create/utc.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/create/from-object.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/create/from-string.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/create/parsing-flags.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/create/check-overflow.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/create/from-string-and-format.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/create/from-anything.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/create/date-from-array.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/create/local.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/create/from-string-and-array.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/src/lib/create/valid.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/ko.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/hy-am.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/sl.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/yo.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/tzm-latn.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/nb.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/fa.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/es-do.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/en-gb.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/ar.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/kn.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/fr-ca.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/tet.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/si.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/eo.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/lt.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/tzl.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/bo.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/hi.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/bg.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/ky.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/eu.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/my.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/tzm.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/sr.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/mi.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/nl.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/mr.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/dv.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/nn.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/sr-cyrl.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/pa-in.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/br.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/th.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/da.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/lo.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/x-pseudo.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/ro.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/pt-br.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/el.js | scurrent_clean/app/dist/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/scurrent_clean/app/dist/moment/locale/de-ch.js | scurrent_clean/app/dist/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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.