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/webpack.main.config.js
scurrent_clean/webpack.main.config.js
'use strict' process.env.BABEL_ENV = 'main' const path = require('path') const pkg = require('./app/package.json') const settings = require('./config.js') const webpack = require('webpack') let mainConfig = { entry: { main: path.join(__dirname, 'app/src/main/index.js') }, externals: Object.keys(pkg.depende...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/tasks/runner.js
scurrent_clean/tasks/runner.js
'use strict' const config = require('../config') const exec = require('child_process').exec const treeKill = require('tree-kill') let YELLOW = '\x1b[33m' let BLUE = '\x1b[34m' let END = '\x1b[0m' let isElectronOpen = false function format (command, data, color) { return color + command + END + ' ' + // Two s...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/tasks/release.js
scurrent_clean/tasks/release.js
'use strict' const exec = require('child_process').exec const packager = require('electron-packager') if (process.env.PLATFORM_TARGET === 'clean') { require('del').sync(['builds/*', '!.gitkeep']) console.log('\x1b[33m`builds` directory cleaned.\n\x1b[0m') } else pack() /** * Build webpack in production */ func...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/src/renderer/main.js
scurrent_clean/app/src/renderer/main.js
import Vue from 'vue' import Electron from 'vue-electron' import Resource from 'vue-resource' import Router from 'vue-router' import Vuex from 'vuex' import jQuery from 'jquery' global.jQuery = jQuery import App from './App' import routes from './routes' import { store } from './store.js'; Vue.use(require('vue-full-...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/src/renderer/store.js
scurrent_clean/app/src/renderer/store.js
import Vuex from 'vuex' export const store = new Vuex.Store({ state: { safelyStoredNumber: 3, user: "", admin: "", docId: "", }, getters: { safelyStoredNumber: state => state.safelyStoredNumber, user: state => state.user, admin: state => state.admin, docId: state => state.docId, ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/src/renderer/routes.js
scurrent_clean/app/src/renderer/routes.js
export default [ { path: '/signup', name: 'signup', component: require('components/signup') }, { path: '/calendar', name: 'calendar', component: require('components/calendar') }, { path: '/', name: 'login', component: require('components/login') }, ]
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/src/renderer/vuex/mutation-types.js
scurrent_clean/app/src/renderer/vuex/mutation-types.js
export const DECREMENT_MAIN_COUNTER = 'DECREMENT_MAIN_COUNTER' export const INCREMENT_MAIN_COUNTER = 'INCREMENT_MAIN_COUNTER'
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/src/renderer/vuex/getters.js
scurrent_clean/app/src/renderer/vuex/getters.js
export const mainCounter = state => state.counters.main
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/src/renderer/vuex/store.js
scurrent_clean/app/src/renderer/vuex/store.js
import Vue from 'vue' import Vuex from 'vuex' import * as actions from './actions' import * as getters from './getters' import modules from './modules' Vue.use(Vuex) export default new Vuex.Store({ actions, getters, modules, strict: process.env.NODE_ENV !== 'production' })
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/src/renderer/vuex/actions.js
scurrent_clean/app/src/renderer/vuex/actions.js
import * as types from './mutation-types' export const decrementMain = ({ commit }) => { commit(types.DECREMENT_MAIN_COUNTER) } export const incrementMain = ({ commit }) => { commit(types.INCREMENT_MAIN_COUNTER) }
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/src/renderer/vuex/modules/index.js
scurrent_clean/app/src/renderer/vuex/modules/index.js
const files = require.context('.', false, /\.js$/) const modules = {} files.keys().forEach((key) => { if (key === './index.js') return modules[key.replace(/(\.\/|\.js)/g, '')] = files(key).default }) export default modules
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/src/renderer/vuex/modules/counters.js
scurrent_clean/app/src/renderer/vuex/modules/counters.js
import * as types from '../mutation-types' const state = { main: 0 } const mutations = { [types.DECREMENT_MAIN_COUNTER] (state) { state.main-- }, [types.INCREMENT_MAIN_COUNTER] (state) { state.main++ } } export default { state, mutations }
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/src/main/index.js
scurrent_clean/app/src/main/index.js
'use strict' import { app, BrowserWindow } from 'electron' let mainWindow const winURL = process.env.NODE_ENV === 'development' ? `http://localhost:${require('../../../config').port}` : `file://${__dirname}/index.html` //create browser window function createWindow () { /** * Initial window options */ m...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/src/main/index.dev.js
scurrent_clean/app/src/main/index.dev.js
/** * This file is used specifically and only for development. It enables the use of ES6+ * features for the main process and installs `electron-debug` & `vue-devtools`. There * shouldn't be any need to modify this file, but it can be used to extend your * development environment. */ /* eslint-disable no-console ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/jquery.min.js
scurrent_clean/app/dist/jquery.min.js
/*! jQuery v3.2.1 | (c) JS Foundation and other contributors | jquery.org/license */ !function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
true
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment.min.js
scurrent_clean/app/dist/moment.min.js
//! moment.js //! version : 2.18.1 //! authors : Tim Wood, Iskren Chernev, Moment.js contributors //! license : MIT //! momentjs.com !function(a,b){"object"==typeof exports&&"undefined"!=typeof module?module.exports=b():"function"==typeof define&&define.amd?define(b):a.moment=b()}(this,function(){"use strict";function ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
true
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/fullcalendar.js
scurrent_clean/app/dist/fullcalendar.js
/*! * FullCalendar v3.4.0 * Docs & License: https://fullcalendar.io/ * (c) 2017 Adam Shaw */ (function(factory) { if (typeof define === 'function' && define.amd) { define([ 'jquery', 'moment' ], factory); } else if (typeof exports === 'object') { // Node/CommonJS module.exports = factory(require('jquery'), ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
true
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/Gruntfile.js
scurrent_clean/app/dist/bootstrap/Gruntfile.js
/*! * Bootstrap's Gruntfile * http://getbootstrap.com * Copyright 2013-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ module.exports = function (grunt) { 'use strict'; // Force use of Unix newlines grunt.util.linefeed = '\n'; RegExp.quote = function (s...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/grunt/bs-commonjs-generator.js
scurrent_clean/app/dist/bootstrap/grunt/bs-commonjs-generator.js
/*! * Bootstrap Grunt task for the CommonJS module generation * http://getbootstrap.com * Copyright 2014-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ 'use strict'; var fs = require('fs'); var path = require('path'); var COMMONJS_BANNER = '// This file is aut...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/grunt/bs-glyphicons-data-generator.js
scurrent_clean/app/dist/bootstrap/grunt/bs-glyphicons-data-generator.js
/*! * Bootstrap Grunt task for Glyphicons data generation * http://getbootstrap.com * Copyright 2014-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ 'use strict'; var fs = require('fs'); module.exports = function generateGlyphiconsData(grunt) { // Pass encodi...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/grunt/change-version.js
scurrent_clean/app/dist/bootstrap/grunt/change-version.js
#!/usr/bin/env node 'use strict'; /* globals Set */ /*! * Script to update version number references in the project. * Copyright 2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ var fs = require('fs'); var path = require('path'); var sh = require('shelljs'); sh.con...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/grunt/bs-lessdoc-parser.js
scurrent_clean/app/dist/bootstrap/grunt/bs-lessdoc-parser.js
/*! * Bootstrap Grunt task for parsing Less docstrings * http://getbootstrap.com * Copyright 2014-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ 'use strict'; var Markdown = require('markdown-it'); function markdown2html(markdownString) { var md = new Markdo...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/grunt/bs-raw-files-generator.js
scurrent_clean/app/dist/bootstrap/grunt/bs-raw-files-generator.js
/*! * Bootstrap Grunt task for generating raw-files.min.js for the Customizer * http://getbootstrap.com * Copyright 2014-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ 'use strict'; var fs = require('fs'); var btoa = require('btoa'); var glob = require('glob');...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/js/button.js
scurrent_clean/app/dist/bootstrap/js/button.js
/* ======================================================================== * Bootstrap: button.js v3.3.7 * http://getbootstrap.com/javascript/#buttons * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootst...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/js/tab.js
scurrent_clean/app/dist/bootstrap/js/tab.js
/* ======================================================================== * Bootstrap: tab.js v3.3.7 * http://getbootstrap.com/javascript/#tabs * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/bl...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/js/alert.js
scurrent_clean/app/dist/bootstrap/js/alert.js
/* ======================================================================== * Bootstrap: alert.js v3.3.7 * http://getbootstrap.com/javascript/#alerts * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstra...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/js/scrollspy.js
scurrent_clean/app/dist/bootstrap/js/scrollspy.js
/* ======================================================================== * Bootstrap: scrollspy.js v3.3.7 * http://getbootstrap.com/javascript/#scrollspy * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/b...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/js/carousel.js
scurrent_clean/app/dist/bootstrap/js/carousel.js
/* ======================================================================== * Bootstrap: carousel.js v3.3.7 * http://getbootstrap.com/javascript/#carousel * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/boo...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/js/tooltip.js
scurrent_clean/app/dist/bootstrap/js/tooltip.js
/* ======================================================================== * Bootstrap: tooltip.js v3.3.7 * http://getbootstrap.com/javascript/#tooltip * Inspired by the original jQuery.tipsy by Jason Frame * ======================================================================== * Copyright 2011-2016 Twitter, I...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/js/popover.js
scurrent_clean/app/dist/bootstrap/js/popover.js
/* ======================================================================== * Bootstrap: popover.js v3.3.7 * http://getbootstrap.com/javascript/#popovers * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/boot...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/js/transition.js
scurrent_clean/app/dist/bootstrap/js/transition.js
/* ======================================================================== * Bootstrap: transition.js v3.3.7 * http://getbootstrap.com/javascript/#transitions * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twb...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/js/dropdown.js
scurrent_clean/app/dist/bootstrap/js/dropdown.js
/* ======================================================================== * Bootstrap: dropdown.js v3.3.7 * http://getbootstrap.com/javascript/#dropdowns * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bo...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/js/affix.js
scurrent_clean/app/dist/bootstrap/js/affix.js
/* ======================================================================== * Bootstrap: affix.js v3.3.7 * http://getbootstrap.com/javascript/#affix * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/js/modal.js
scurrent_clean/app/dist/bootstrap/js/modal.js
/* ======================================================================== * Bootstrap: modal.js v3.3.7 * http://getbootstrap.com/javascript/#modals * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstra...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/js/collapse.js
scurrent_clean/app/dist/bootstrap/js/collapse.js
/* ======================================================================== * Bootstrap: collapse.js v3.3.7 * http://getbootstrap.com/javascript/#collapse * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/boo...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/dist/js/npm.js
scurrent_clean/app/dist/bootstrap/dist/js/npm.js
// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. require('../../js/transition.js') require('../../js/alert.js') require('../../js/button.js') require('../../js/carousel.js') require('../../js/collapse.js') require('../../js/dropdown.js') require('../../...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/dist/js/bootstrap.js
scurrent_clean/app/dist/bootstrap/dist/js/bootstrap.js
/*! * Bootstrap v3.3.7 (http://getbootstrap.com) * Copyright 2011-2016 Twitter, Inc. * Licensed under the MIT license */ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript requires jQuery') } +function ($) { 'use strict'; var version = $.fn.jquery.split(' ')[0].split('.') if ((v...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
true
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/bootstrap/dist/js/bootstrap.min.js
scurrent_clean/app/dist/bootstrap/dist/js/bootstrap.min.js
/*! * Bootstrap v3.3.7 (http://getbootstrap.com) * Copyright 2011-2016 Twitter, Inc. * Licensed under the MIT license */ if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
true
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/ender.js
scurrent_clean/app/dist/moment/ender.js
$.ender({ moment: 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/moment.js
scurrent_clean/app/dist/moment/moment.js
//! moment.js //! version : 2.18.1 //! authors : Tim Wood, Iskren Chernev, Moment.js contributors //! license : MIT //! momentjs.com ;(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(fac...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
true
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/scurrent_clean/app/dist/moment/package.js
scurrent_clean/app/dist/moment/package.js
var profile = { resourceTags: { ignore: function(filename, mid){ // only include moment/moment return mid != "moment/moment"; }, amd: function(filename, mid){ return /\.js$/.test(filename); } } };
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/moment.js
scurrent_clean/app/dist/moment/src/moment.js
//! moment.js //! version : 2.18.1 //! authors : Tim Wood, Iskren Chernev, Moment.js contributors //! license : MIT //! momentjs.com import { hooks as moment, setHookCallback } from './lib/utils/hooks'; moment.version = '2.18.1'; import { min, max, now, isMoment, momentPrototype as fn, create...
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/locale/ko.js
scurrent_clean/app/dist/moment/src/locale/ko.js
//! moment.js locale configuration //! locale : Korean [ko] //! author : Kyungwook, Park : https://github.com/kyungw00k //! author : Jeeeyul Lee <jeeeyul@gmail.com> import moment from '../moment'; export default moment.defineLocale('ko', { months : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'), monthsSh...
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/locale/hy-am.js
scurrent_clean/app/dist/moment/src/locale/hy-am.js
//! moment.js locale configuration //! locale : Armenian [hy-am] //! author : Armendarabyan : https://github.com/armendarabyan import moment from '../moment'; export default moment.defineLocale('hy-am', { months : { format: 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբ...
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/locale/sl.js
scurrent_clean/app/dist/moment/src/locale/sl.js
//! moment.js locale configuration //! locale : Slovenian [sl] //! author : Robert Sedovšek : https://github.com/sedovsek import moment from '../moment'; function processRelativeTime(number, withoutSuffix, key, isFuture) { var result = number + ' '; switch (key) { case 's': return withoutS...
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/locale/yo.js
scurrent_clean/app/dist/moment/src/locale/yo.js
//! moment.js locale configuration //! locale : Yoruba Nigeria [yo] //! author : Atolagbe Abisoye : https://github.com/andela-batolagbe import moment from '../moment'; export default moment.defineLocale('yo', { months : 'Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀'.spli...
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/locale/tzm-latn.js
scurrent_clean/app/dist/moment/src/locale/tzm-latn.js
//! moment.js locale configuration //! locale : Central Atlas Tamazight Latin [tzm-latn] //! author : Abdel Said : https://github.com/abdelsaid import moment from '../moment'; export default moment.defineLocale('tzm-latn', { months : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_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/locale/nb.js
scurrent_clean/app/dist/moment/src/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 import moment from '../moment'; export default moment.defineLocale('nb', { months : 'januar_februar_mars_april_mai_juni_jul...
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/locale/fa.js
scurrent_clean/app/dist/moment/src/locale/fa.js
//! moment.js locale configuration //! locale : Persian [fa] //! author : Ebrahim Byagowi : https://github.com/ebraminio import moment from '../moment'; var symbolMap = { '1': '۱', '2': '۲', '3': '۳', '4': '۴', '5': '۵', '6': '۶', '7': '۷', '8': '۸', '9': '۹', '0': '۰' }, numbe...
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/locale/es-do.js
scurrent_clean/app/dist/moment/src/locale/es-do.js
//! moment.js locale configuration //! locale : Spanish (Dominican Republic) [es-do] import moment from '../moment'; var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'), monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'); export default moment.def...
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/locale/en-gb.js
scurrent_clean/app/dist/moment/src/locale/en-gb.js
//! moment.js locale configuration //! locale : English (United Kingdom) [en-gb] //! author : Chris Gedrim : https://github.com/chrisgedrim import moment from '../moment'; export default moment.defineLocale('en-gb', { months : 'January_February_March_April_May_June_July_August_September_October_November_December'...
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/locale/ar.js
scurrent_clean/app/dist/moment/src/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 import moment from '../moment'; var symbolMap = { '1': '١', '2': '٢', '3': '٣', '4': '٤', '5': '٥', '6': '...
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/locale/kn.js
scurrent_clean/app/dist/moment/src/locale/kn.js
//! moment.js locale configuration //! locale : Kannada [kn] //! author : Rajeev Naik : https://github.com/rajeevnaikte import moment from '../moment'; var symbolMap = { '1': '೧', '2': '೨', '3': '೩', '4': '೪', '5': '೫', '6': '೬', '7': '೭', '8': '೮', '9': '೯', '0': '೦' }, 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/locale/fr-ca.js
scurrent_clean/app/dist/moment/src/locale/fr-ca.js
//! moment.js locale configuration //! locale : French (Canada) [fr-ca] //! author : Jonathan Abourbih : https://github.com/jonbca import moment from '../moment'; export default moment.defineLocale('fr-ca', { months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'...
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/locale/tet.js
scurrent_clean/app/dist/moment/src/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 import moment from '../moment'; export default moment.defineLocale('tet', { months : 'Janeiru_Fevereiru_Marsu_Abril_...
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/locale/si.js
scurrent_clean/app/dist/moment/src/locale/si.js
//! moment.js locale configuration //! locale : Sinhalese [si] //! author : Sampath Sitinamaluwa : https://github.com/sampathsris import moment from '../moment'; /*jshint -W100*/ export default moment.defineLocale('si', { months : 'ජනවාරි_පෙබරවාරි_මාර්තු_අප්‍රේල්_මැයි_ජූනි_ජූලි_අගෝස්තු_සැප්තැම්බර්_ඔක්තෝබර්_නොවැම්...
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/locale/eo.js
scurrent_clean/app/dist/moment/src/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 import moment from '../moment'; export default moment.defineLocal...
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/locale/lt.js
scurrent_clean/app/dist/moment/src/locale/lt.js
//! moment.js locale configuration //! locale : Lithuanian [lt] //! author : Mindaugas Mozūras : https://github.com/mmozuras import moment from '../moment'; var units = { 'm' : 'minutė_minutės_minutę', 'mm': 'minutės_minučių_minutes', 'h' : 'valanda_valandos_valandą', 'hh': 'valandos_valandų_valandas'...
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/locale/tzl.js
scurrent_clean/app/dist/moment/src/locale/tzl.js
//! moment.js locale configuration //! locale : Talossan [tzl] //! author : Robin van der Vliet : https://github.com/robin0van0der0v //! author : Iustì Canun import moment from '../moment'; // After the year there should be a slash and the amount of years since December 26, 1979 in Roman numerals. // This is currentl...
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/locale/bo.js
scurrent_clean/app/dist/moment/src/locale/bo.js
//! moment.js locale configuration //! locale : Tibetan [bo] //! author : Thupten N. Chakrishar : https://github.com/vajradog import moment from '../moment'; var symbolMap = { '1': '༡', '2': '༢', '3': '༣', '4': '༤', '5': '༥', '6': '༦', '7': '༧', '8': '༨', '9': '༩', '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/locale/hi.js
scurrent_clean/app/dist/moment/src/locale/hi.js
//! moment.js locale configuration //! locale : Hindi [hi] //! author : Mayank Singhal : https://github.com/mayanksinghal import moment from '../moment'; var symbolMap = { '1': '१', '2': '२', '3': '३', '4': '४', '5': '५', '6': '६', '7': '७', '8': '८', '9': '९', '0': '०' }, numb...
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/locale/bg.js
scurrent_clean/app/dist/moment/src/locale/bg.js
//! moment.js locale configuration //! locale : Bulgarian [bg] //! author : Krasen Borisov : https://github.com/kraz import moment from '../moment'; export default moment.defineLocale('bg', { months : 'януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември'.split('_'), monthsShort :...
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/locale/ky.js
scurrent_clean/app/dist/moment/src/locale/ky.js
//! moment.js locale configuration //! locale : Kyrgyz [ky] //! author : Chyngyz Arystan uulu : https://github.com/chyngyz import moment from '../moment'; var suffixes = { 0: '-чү', 1: '-чи', 2: '-чи', 3: '-чү', 4: '-чү', 5: '-чи', 6: '-чы', 7: '-чи', 8: '-чи', 9: '-чу', 1...
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/locale/eu.js
scurrent_clean/app/dist/moment/src/locale/eu.js
//! moment.js locale configuration //! locale : Basque [eu] //! author : Eneko Illarramendi : https://github.com/eillarra import moment from '../moment'; export default moment.defineLocale('eu', { months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'), ...
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/locale/my.js
scurrent_clean/app/dist/moment/src/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 import moment from '../moment'; var symbolMap = { '1': '၁', '2': '၂', '3': '၃', '4': ...
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/locale/tzm.js
scurrent_clean/app/dist/moment/src/locale/tzm.js
//! moment.js locale configuration //! locale : Central Atlas Tamazight [tzm] //! author : Abdel Said : https://github.com/abdelsaid import moment from '../moment'; export default moment.defineLocale('tzm', { months : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'), ...
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/locale/sr.js
scurrent_clean/app/dist/moment/src/locale/sr.js
//! moment.js locale configuration //! locale : Serbian [sr] //! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j import moment from '../moment'; var translator = { words: { //Different grammatical cases m: ['jedan minut', 'jedne minute'], mm: ['minut', 'minute', '...
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/locale/mi.js
scurrent_clean/app/dist/moment/src/locale/mi.js
//! moment.js locale configuration //! locale : Maori [mi] //! author : John Corrigan <robbiecloset@gmail.com> : https://github.com/johnideal import moment from '../moment'; export default moment.defineLocale('mi', { months: 'Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-k...
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/locale/nl.js
scurrent_clean/app/dist/moment/src/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 import moment from '../moment'; var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'), monthsShor...
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/locale/mr.js
scurrent_clean/app/dist/moment/src/locale/mr.js
//! moment.js locale configuration //! locale : Marathi [mr] //! author : Harshad Kale : https://github.com/kalehv //! author : Vivek Athalye : https://github.com/vnathalye import moment from '../moment'; var symbolMap = { '1': '१', '2': '२', '3': '३', '4': '४', '5': '५', '6': '६', '7': '७...
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/locale/dv.js
scurrent_clean/app/dist/moment/src/locale/dv.js
//! moment.js locale configuration //! locale : Maldivian [dv] //! author : Jawish Hameed : https://github.com/jawish import moment from '../moment'; var months = [ 'ޖެނުއަރީ', 'ފެބްރުއަރީ', 'މާރިޗު', 'އޭޕްރީލު', 'މޭ', 'ޖޫން', 'ޖުލައި', 'އޯގަސްޓު', 'ސެޕްޓެމްބަރު', 'އޮކްޓޯބަރު',...
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/locale/nn.js
scurrent_clean/app/dist/moment/src/locale/nn.js
//! moment.js locale configuration //! locale : Nynorsk [nn] //! author : https://github.com/mechuwind import moment from '../moment'; export default moment.defineLocale('nn', { months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'), monthsShort : 'jan_feb_mar...
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/locale/sr-cyrl.js
scurrent_clean/app/dist/moment/src/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 import moment from '../moment'; var translator = { words: { //Different grammatical cases m: ['један минут', 'једне минуте'], mm: ['минут...
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/locale/pa-in.js
scurrent_clean/app/dist/moment/src/locale/pa-in.js
//! moment.js locale configuration //! locale : Punjabi (India) [pa-in] //! author : Harpreet Singh : https://github.com/harpreetkhalsagtbit import moment from '../moment'; var symbolMap = { '1': '੧', '2': '੨', '3': '੩', '4': '੪', '5': '੫', '6': '੬', '7': '੭', '8': '੮', '9': '੯', ...
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/locale/br.js
scurrent_clean/app/dist/moment/src/locale/br.js
//! moment.js locale configuration //! locale : Breton [br] //! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou import moment from '../moment'; function relativeTimeWithMutation(number, withoutSuffix, key) { var format = { 'mm': 'munutenn', 'MM': 'miz', 'dd': 'devezh' ...
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/locale/th.js
scurrent_clean/app/dist/moment/src/locale/th.js
//! moment.js locale configuration //! locale : Thai [th] //! author : Kridsada Thanabulpong : https://github.com/sirn import moment from '../moment'; export default moment.defineLocale('th', { months : 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split('_'),...
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/locale/da.js
scurrent_clean/app/dist/moment/src/locale/da.js
//! moment.js locale configuration //! locale : Danish [da] //! author : Ulrik Nielsen : https://github.com/mrbase import moment from '../moment'; export default moment.defineLocale('da', { months : 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split('_'), monthsShort :...
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/locale/lo.js
scurrent_clean/app/dist/moment/src/locale/lo.js
//! moment.js locale configuration //! locale : Lao [lo] //! author : Ryan Hart : https://github.com/ryanhart2 import moment from '../moment'; export default moment.defineLocale('lo', { months : 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split('_'), monthsShort : 'ມັງກອນ_ກຸມພ...
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/locale/x-pseudo.js
scurrent_clean/app/dist/moment/src/locale/x-pseudo.js
//! moment.js locale configuration //! locale : Pseudo [x-pseudo] //! author : Andrew Hood : https://github.com/andrewhood125 import moment from '../moment'; export default moment.defineLocale('x-pseudo', { months : 'J~áñúá~rý_F~ébrú~árý_~Márc~h_Áp~ríl_~Máý_~Júñé~_Júl~ý_Áú~gúst~_Sép~témb~ér_Ó~ctób~ér_Ñ~óvém~bé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/src/locale/ro.js
scurrent_clean/app/dist/moment/src/locale/ro.js
//! moment.js locale configuration //! locale : Romanian [ro] //! author : Vlad Gurdiga : https://github.com/gurdiga //! author : Valentin Agachi : https://github.com/avaly import moment from '../moment'; function relativeTimeWithPlural(number, withoutSuffix, key) { var format = { 'mm': 'minute', ...
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/locale/pt-br.js
scurrent_clean/app/dist/moment/src/locale/pt-br.js
//! moment.js locale configuration //! locale : Portuguese (Brazil) [pt-br] //! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira import moment from '../moment'; export default moment.defineLocale('pt-br', { months : 'Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Nov...
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/locale/el.js
scurrent_clean/app/dist/moment/src/locale/el.js
//! moment.js locale configuration //! locale : Greek [el] //! author : Aggelos Karalias : https://github.com/mehiel import moment from '../moment'; import isFunction from '../lib/utils/is-function'; export default moment.defineLocale('el', { monthsNominativeEl : 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιού...
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/locale/de-ch.js
scurrent_clean/app/dist/moment/src/locale/de-ch.js
//! moment.js locale configuration //! locale : German (Switzerland) [de-ch] //! author : sschueller : https://github.com/sschueller // based on: https://www.bk.admin.ch/dokumentation/sprachen/04915/05016/index.html?lang=de# import moment from '../moment'; function processRelativeTime(number, withoutSuffix, key, isF...
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/locale/fy.js
scurrent_clean/app/dist/moment/src/locale/fy.js
//! moment.js locale configuration //! locale : Frisian [fy] //! author : Robin van der Vliet : https://github.com/robin0van0der0v import moment from '../moment'; var monthsShortWithDots = 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split('_'), monthsShortWithoutDots = 'jan_feb_mrt_apr_mai_jun_ju...
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/locale/te.js
scurrent_clean/app/dist/moment/src/locale/te.js
//! moment.js locale configuration //! locale : Telugu [te] //! author : Krishna Chaitanya Thota : https://github.com/kcthota import moment from '../moment'; export default moment.defineLocale('te', { months : 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జూలై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split('_'), ...
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/locale/ms-my.js
scurrent_clean/app/dist/moment/src/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 import moment from '../moment'; export default moment.defineLocale('ms-my', { months : 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktobe...
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/locale/sw.js
scurrent_clean/app/dist/moment/src/locale/sw.js
//! moment.js locale configuration //! locale : Swahili [sw] //! author : Fahad Kassim : https://github.com/fadsel import moment from '../moment'; export default moment.defineLocale('sw', { months : 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split('_'), monthsShort :...
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/locale/hr.js
scurrent_clean/app/dist/moment/src/locale/hr.js
//! moment.js locale configuration //! locale : Croatian [hr] //! author : Bojan Marković : https://github.com/bmarkovic import moment from '../moment'; function translate(number, withoutSuffix, key) { var result = number + ' '; switch (key) { case 'm': return withoutSuffix ? 'jedna minuta...
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/locale/cv.js
scurrent_clean/app/dist/moment/src/locale/cv.js
//! moment.js locale configuration //! locale : Chuvash [cv] //! author : Anatoly Mironov : https://github.com/mirontoli import moment from '../moment'; export default moment.defineLocale('cv', { months : 'кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав'.split('_'), monthsShort : 'кӑр_нар_пуш_ак...
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/locale/zh-hk.js
scurrent_clean/app/dist/moment/src/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 import moment from '../moment'; export default moment.defineLocale('zh-hk', { months : '...
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/locale/ar-tn.js
scurrent_clean/app/dist/moment/src/locale/ar-tn.js
//! moment.js locale configuration //! locale : Arabic (Tunisia) [ar-tn] //! author : Nader Toukabri : https://github.com/naderio import moment from '../moment'; export default moment.defineLocale('ar-tn', { months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'), monthsS...
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/locale/pt.js
scurrent_clean/app/dist/moment/src/locale/pt.js
//! moment.js locale configuration //! locale : Portuguese [pt] //! author : Jefferson : https://github.com/jalex79 import moment from '../moment'; export default moment.defineLocale('pt', { months : 'Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro'.split('_'), monthsS...
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/locale/es.js
scurrent_clean/app/dist/moment/src/locale/es.js
//! moment.js locale configuration //! locale : Spanish [es] //! author : Julio Napurí : https://github.com/julionc import moment from '../moment'; var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'), monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('...
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/locale/is.js
scurrent_clean/app/dist/moment/src/locale/is.js
//! moment.js locale configuration //! locale : Icelandic [is] //! author : Hinrik Örn Sigurðsson : https://github.com/hinrik import moment from '../moment'; function plural(n) { if (n % 100 === 11) { return true; } else if (n % 10 === 1) { return false; } return true; } function trans...
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/locale/ta.js
scurrent_clean/app/dist/moment/src/locale/ta.js
//! moment.js locale configuration //! locale : Tamil [ta] //! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404 import moment from '../moment'; var symbolMap = { '1': '௧', '2': '௨', '3': '௩', '4': '௪', '5': '௫', '6': '௬', '7': '௭', '8': '௮', '9': '௯', '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/locale/me.js
scurrent_clean/app/dist/moment/src/locale/me.js
//! moment.js locale configuration //! locale : Montenegrin [me] //! author : Miodrag Nikač <miodrag@restartit.me> : https://github.com/miodragnikac import moment from '../moment'; var translator = { words: { //Different grammatical cases m: ['jedan minut', 'jednog minuta'], mm: ['minut', 'minuta'...
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/locale/se.js
scurrent_clean/app/dist/moment/src/locale/se.js
//! moment.js locale configuration //! locale : Northern Sami [se] //! authors : Bård Rolstad Henriksen : https://github.com/karamell import moment from '../moment'; export default moment.defineLocale('se', { months : 'ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemán...
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/locale/nl-be.js
scurrent_clean/app/dist/moment/src/locale/nl-be.js
//! moment.js locale configuration //! locale : Dutch (Belgium) [nl-be] //! author : Joris Röling : https://github.com/jorisroling //! author : Jacob Middag : https://github.com/middagj import moment from '../moment'; var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'), ...
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/locale/cy.js
scurrent_clean/app/dist/moment/src/locale/cy.js
//! moment.js locale configuration //! locale : Welsh [cy] //! author : Robert Allen : https://github.com/robgallen //! author : https://github.com/ryangreaves import moment from '../moment'; export default moment.defineLocale('cy', { months: 'Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_...
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/locale/fo.js
scurrent_clean/app/dist/moment/src/locale/fo.js
//! moment.js locale configuration //! locale : Faroese [fo] //! author : Ragnar Johannesen : https://github.com/ragnar123 import moment from '../moment'; export default moment.defineLocale('fo', { months : 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split('_'), months...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false