repo stringlengths 5 106 | file_url stringlengths 78 301 | file_path stringlengths 4 211 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 14:56:49 2026-01-05 02:23:25 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/minimist/index.js | clean_server/resources/app/node_modules/minimist/index.js | module.exports = function (args, opts) {
if (!opts) opts = {};
var flags = { bools : {}, strings : {} };
[].concat(opts['boolean']).filter(Boolean).forEach(function (key) {
flags.bools[key] = true;
});
[].concat(opts.string).filter(Boolean).forEach(function (key) {
fla... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/minimist/test/long.js | clean_server/resources/app/node_modules/minimist/test/long.js | var test = require('tape');
var parse = require('../');
test('long opts', function (t) {
t.deepEqual(
parse([ '--bool' ]),
{ bool : true, _ : [] },
'long boolean'
);
t.deepEqual(
parse([ '--pow', 'xixxle' ]),
{ pow : 'xixxle', _ : [] },
'long capture sp'
... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/minimist/test/default_bool.js | clean_server/resources/app/node_modules/minimist/test/default_bool.js | var test = require('tape');
var parse = require('../');
test('boolean default true', function (t) {
var argv = parse([], {
boolean: 'sometrue',
default: { sometrue: true }
});
t.equal(argv.sometrue, true);
t.end();
});
test('boolean default false', function (t) {
var argv = parse([... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/minimist/test/dash.js | clean_server/resources/app/node_modules/minimist/test/dash.js | var parse = require('../');
var test = require('tape');
test('-', function (t) {
t.plan(5);
t.deepEqual(parse([ '-n', '-' ]), { n: '-', _: [] });
t.deepEqual(parse([ '-' ]), { _: [ '-' ] });
t.deepEqual(parse([ '-f-' ]), { f: '-', _: [] });
t.deepEqual(
parse([ '-b', '-' ], { boolean: 'b' }... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/minimist/test/whitespace.js | clean_server/resources/app/node_modules/minimist/test/whitespace.js | var parse = require('../');
var test = require('tape');
test('whitespace should be whitespace' , function (t) {
t.plan(1);
var x = parse([ '-x', '\t' ]).x;
t.equal(x, '\t');
});
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/minimist/test/short.js | clean_server/resources/app/node_modules/minimist/test/short.js | var parse = require('../');
var test = require('tape');
test('numeric short args', function (t) {
t.plan(2);
t.deepEqual(parse([ '-n123' ]), { n: 123, _: [] });
t.deepEqual(
parse([ '-123', '456' ]),
{ 1: true, 2: true, 3: 456, _: [] }
);
});
test('short', function (t) {
t.deepEqua... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/minimist/test/parse.js | clean_server/resources/app/node_modules/minimist/test/parse.js | var parse = require('../');
var test = require('tape');
test('parse args', function (t) {
t.deepEqual(
parse([ '--no-moo' ]),
{ moo : false, _ : [] },
'no'
);
t.deepEqual(
parse([ '-v', 'a', '-v', 'b', '-v', 'c' ]),
{ v : ['a','b','c'], _ : [] },
'multi'
... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/minimist/test/parse_modified.js | clean_server/resources/app/node_modules/minimist/test/parse_modified.js | var parse = require('../');
var test = require('tape');
test('parse with modifier functions' , function (t) {
t.plan(1);
var argv = parse([ '-b', '123' ], { boolean: 'b' });
t.deepEqual(argv, { b: true, _: ['123'] });
});
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/minimist/test/dotted.js | clean_server/resources/app/node_modules/minimist/test/dotted.js | var parse = require('../');
var test = require('tape');
test('dotted alias', function (t) {
var argv = parse(['--a.b', '22'], {default: {'a.b': 11}, alias: {'a.b': 'aa.bb'}});
t.equal(argv.a.b, 22);
t.equal(argv.aa.bb, 22);
t.end();
});
test('dotted default', function (t) {
var argv = parse('', {d... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/minimist/example/parse.js | clean_server/resources/app/node_modules/minimist/example/parse.js | var argv = require('../')(process.argv.slice(2));
console.dir(argv);
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/pg-pool/index.js | clean_server/resources/app/node_modules/pg-pool/index.js | var genericPool = require('generic-pool')
var util = require('util')
var EventEmitter = require('events').EventEmitter
var objectAssign = require('object-assign')
// there is a bug in the generic pool where it will not recreate
// destroyed workers (even if there is waiting work to do) unless
// there is a min specifi... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/pg-pool/node_modules/generic-pool/.eslintrc.js | clean_server/resources/app/node_modules/pg-pool/node_modules/generic-pool/.eslintrc.js | module.exports = {
"extends": "standard",
"plugins": [
"standard"
]
}; | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/pg-pool/node_modules/generic-pool/test/generic-pool.test.js | clean_server/resources/app/node_modules/pg-pool/node_modules/generic-pool/test/generic-pool.test.js | var assert = require('assert')
var poolModule = require('..')
module.exports = {
'expands to max limit': function (beforeExit) {
var createCount = 0
var destroyCount = 0
var borrowCount = 0
var factory = {
name: 'test1',
create: function (callback) {
callback(null, { count: ++cre... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/pg-pool/node_modules/generic-pool/lib/generic-pool.js | clean_server/resources/app/node_modules/pg-pool/node_modules/generic-pool/lib/generic-pool.js | /**
* @class
* @private
*/
function PriorityQueue (size) {
if (!(this instanceof PriorityQueue)) {
return new PriorityQueue()
}
this._size = size
this._slots = null
this._total = null
// initialize arrays to hold queue elements
size = Math.max(+size | 0, 1)
this._slots = []
for (var i = 0; i ... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/pg-pool/test/index.js | clean_server/resources/app/node_modules/pg-pool/test/index.js | var expect = require('expect.js')
var _ = require('lodash')
var describe = require('mocha').describe
var it = require('mocha').it
var Promise = require('bluebird')
var Pool = require('../')
if (typeof global.Promise === 'undefined') {
global.Promise = Promise
}
describe('pool', function () {
it('can be used as ... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/pg-pool/test/events.js | clean_server/resources/app/node_modules/pg-pool/test/events.js | var expect = require('expect.js')
var EventEmitter = require('events').EventEmitter
var describe = require('mocha').describe
var it = require('mocha').it
var objectAssign = require('object-assign')
var Pool = require('../')
describe('events', function () {
it('emits connect before callback', function (done) {
va... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/pg-pool/test/logging.js | clean_server/resources/app/node_modules/pg-pool/test/logging.js | var expect = require('expect.js')
var describe = require('mocha').describe
var it = require('mocha').it
var Pool = require('../')
describe('logging', function () {
it('logs to supplied log function if given', function () {
var messages = []
var log = function (msg) {
messages.push(msg)
}
var ... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/runtime.js | clean_server/resources/app/node_modules/handlebars/runtime.js | // Create a simple path alias to allow browserify to resolve
// the runtime on a supported path.
module.exports = require('./dist/cjs/handlebars.runtime')['default'];
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/index.js | clean_server/resources/app/node_modules/handlebars/lib/index.js | // USAGE:
// var handlebars = require('handlebars');
/* eslint-disable no-var */
// var local = handlebars.create();
var handlebars = require('../dist/cjs/handlebars')['default'];
var printer = require('../dist/cjs/handlebars/compiler/printer');
handlebars.PrintVisitor = printer.PrintVisitor;
handlebars.print = prin... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/precompiler.js | clean_server/resources/app/node_modules/handlebars/lib/precompiler.js | /* eslint-disable no-console */
import Async from 'async';
import fs from 'fs';
import * as Handlebars from './handlebars';
import {basename} from 'path';
import {SourceMapConsumer, SourceNode} from 'source-map';
import uglify from 'uglify-js';
module.exports.loadTemplates = function(opts, callback) {
loadStrings(op... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars.runtime.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars.runtime.js | import * as base from './handlebars/base';
// Each of these augment the Handlebars object. No need to setup here.
// (This is done to easily share code between commonjs and browse envs)
import SafeString from './handlebars/safe-string';
import Exception from './handlebars/exception';
import * as Utils from './handleba... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars.js | import runtime from './handlebars.runtime';
// Compiler imports
import AST from './handlebars/compiler/ast';
import { parser as Parser, parse } from './handlebars/compiler/base';
import { Compiler, compile, precompile } from './handlebars/compiler/compiler';
import JavaScriptCompiler from './handlebars/compiler/javasc... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/runtime.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/runtime.js | import * as Utils from './utils';
import Exception from './exception';
import { COMPILER_REVISION, REVISION_CHANGES, createFrame } from './base';
export function checkRevision(compilerInfo) {
const compilerRevision = compilerInfo && compilerInfo[0] || 1,
currentRevision = COMPILER_REVISION;
if (compilerRe... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/base.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/base.js | import {createFrame, extend, toString} from './utils';
import Exception from './exception';
import {registerDefaultHelpers} from './helpers';
import {registerDefaultDecorators} from './decorators';
import logger from './logger';
export const VERSION = '4.0.6';
export const COMPILER_REVISION = 7;
export const REVISION... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/safe-string.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/safe-string.js | // Build out our basic SafeString type
function SafeString(string) {
this.string = string;
}
SafeString.prototype.toString = SafeString.prototype.toHTML = function() {
return '' + this.string;
};
export default SafeString;
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/no-conflict.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/no-conflict.js | /* global window */
export default function(Handlebars) {
/* istanbul ignore next */
let root = typeof global !== 'undefined' ? global : window,
$Handlebars = root.Handlebars;
/* istanbul ignore next */
Handlebars.noConflict = function() {
if (root.Handlebars === Handlebars) {
root.Handlebars = ... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/logger.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/logger.js | import {indexOf} from './utils';
let logger = {
methodMap: ['debug', 'info', 'warn', 'error'],
level: 'info',
// Maps a given level value to the `methodMap` indexes above.
lookupLevel: function(level) {
if (typeof level === 'string') {
let levelMap = indexOf(logger.methodMap, level.toLowerCase());
... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/decorators.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/decorators.js | import registerInline from './decorators/inline';
export function registerDefaultDecorators(instance) {
registerInline(instance);
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers.js | import registerBlockHelperMissing from './helpers/block-helper-missing';
import registerEach from './helpers/each';
import registerHelperMissing from './helpers/helper-missing';
import registerIf from './helpers/if';
import registerLog from './helpers/log';
import registerLookup from './helpers/lookup';
import register... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/exception.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/exception.js |
const errorProps = ['description', 'fileName', 'lineNumber', 'message', 'name', 'number', 'stack'];
function Exception(message, node) {
let loc = node && node.loc,
line,
column;
if (loc) {
line = loc.start.line;
column = loc.start.column;
message += ' - ' + line + ':' + column;
}
let... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/utils.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/utils.js | const escape = {
'&': '&',
'<': '<',
'>': '>',
'"': '"',
"'": ''',
'`': '`',
'=': '='
};
const badChars = /[&<>"'`=]/g,
possible = /[&<>"'`=]/;
function escapeChar(chr) {
return escape[chr];
}
export function extend(obj/* , ...source */) {
for (let i = 1; i < arg... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/decorators/inline.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/decorators/inline.js | import {extend} from '../utils';
export default function(instance) {
instance.registerDecorator('inline', function(fn, props, container, options) {
let ret = fn;
if (!props.partials) {
props.partials = {};
ret = function(context, options) {
// Create a new partials stack frame prior to ex... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/if.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/if.js | import {isEmpty, isFunction} from '../utils';
export default function(instance) {
instance.registerHelper('if', function(conditional, options) {
if (isFunction(conditional)) { conditional = conditional.call(this); }
// Default behavior is to render the positive path if the value is truthy and not empty.
... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/block-helper-missing.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/block-helper-missing.js | import {appendContextPath, createFrame, isArray} from '../utils';
export default function(instance) {
instance.registerHelper('blockHelperMissing', function(context, options) {
let inverse = options.inverse,
fn = options.fn;
if (context === true) {
return fn(this);
} else if (context === f... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/lookup.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/lookup.js | export default function(instance) {
instance.registerHelper('lookup', function(obj, field) {
return obj && obj[field];
});
}
| javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/with.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/with.js | import {appendContextPath, blockParams, createFrame, isEmpty, isFunction} from '../utils';
export default function(instance) {
instance.registerHelper('with', function(context, options) {
if (isFunction(context)) { context = context.call(this); }
let fn = options.fn;
if (!isEmpty(context)) {
let ... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/helper-missing.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/helper-missing.js | import Exception from '../exception';
export default function(instance) {
instance.registerHelper('helperMissing', function(/* [args, ]options */) {
if (arguments.length === 1) {
// A missing field in a {{foo}} construct.
return undefined;
} else {
// Someone is actually trying to call some... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/each.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/each.js | import {appendContextPath, blockParams, createFrame, isArray, isFunction} from '../utils';
import Exception from '../exception';
export default function(instance) {
instance.registerHelper('each', function(context, options) {
if (!options) {
throw new Exception('Must pass iterator to #each');
}
le... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/log.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/helpers/log.js | export default function(instance) {
instance.registerHelper('log', function(/* message, options */) {
let args = [undefined],
options = arguments[arguments.length - 1];
for (let i = 0; i < arguments.length - 1; i++) {
args.push(arguments[i]);
}
let level = 1;
if (options.hash.level ... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/visitor.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/visitor.js | import Exception from '../exception';
function Visitor() {
this.parents = [];
}
Visitor.prototype = {
constructor: Visitor,
mutating: false,
// Visits a given value. If mutating, will replace the value if necessary.
acceptKey: function(node, name) {
let value = this.accept(node[name]);
if (this.mut... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/javascript-compiler.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/javascript-compiler.js | import { COMPILER_REVISION, REVISION_CHANGES } from '../base';
import Exception from '../exception';
import {isArray} from '../utils';
import CodeGen from './code-gen';
function Literal(value) {
this.value = value;
}
function JavaScriptCompiler() {}
JavaScriptCompiler.prototype = {
// PUBLIC API: You can overrid... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/base.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/base.js | import parser from './parser';
import WhitespaceControl from './whitespace-control';
import * as Helpers from './helpers';
import { extend } from '../utils';
export { parser };
let yy = {};
extend(yy, Helpers);
export function parse(input, options) {
// Just return if an already-compiled AST was passed in.
if (i... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/printer.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/printer.js | /* eslint-disable new-cap */
import Visitor from './visitor';
export function print(ast) {
return new PrintVisitor().accept(ast);
}
export function PrintVisitor() {
this.padding = 0;
}
PrintVisitor.prototype = new Visitor();
PrintVisitor.prototype.pad = function(string) {
let out = '';
for (let i = 0, l = ... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/whitespace-control.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/whitespace-control.js | import Visitor from './visitor';
function WhitespaceControl(options = {}) {
this.options = options;
}
WhitespaceControl.prototype = new Visitor();
WhitespaceControl.prototype.Program = function(program) {
const doStandalone = !this.options.ignoreStandalone;
let isRoot = !this.isRootSeen;
this.isRootSeen = tr... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/code-gen.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/code-gen.js | /* global define */
import {isArray} from '../utils';
let SourceNode;
try {
/* istanbul ignore next */
if (typeof define !== 'function' || !define.amd) {
// We don't support this in AMD environments. For these environments, we asusme that
// they are running on the browser and thus have no need for the so... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/ast.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/ast.js | let AST = {
// Public API used to evaluate derived attributes regarding AST nodes
helpers: {
// a mustache is definitely a helper if:
// * it is an eligible helper, and
// * it has at least one parameter or hash segment
helperExpression: function(node) {
return (node.type === 'SubExpression')
... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/parser.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/parser.js | /* istanbul ignore next */
/* Jison generated parser */
var handlebars = (function(){
var parser = {trace: function trace() { },
yy: {},
symbols_: {"error":2,"root":3,"program":4,"EOF":5,"program_repetition0":6,"statement":7,"mustache":8,"block":9,"rawBlock":10,"partial":11,"partialBlock":12,"content":13,"COMMENT":14,"... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | true |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/compiler.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/compiler.js | /* eslint-disable new-cap */
import Exception from '../exception';
import {isArray, indexOf} from '../utils';
import AST from './ast';
const slice = [].slice;
export function Compiler() {}
// the foundHelper register will disambiguate helper lookup from finding a
// function in a context. This is necessary for must... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/helpers.js | clean_server/resources/app/node_modules/handlebars/lib/handlebars/compiler/helpers.js | import Exception from '../exception';
function validateClose(open, close) {
close = close.path ? close.path.original : close;
if (open.path.original !== close) {
let errorNode = {loc: open.path.loc};
throw new Exception(open.path.original + " doesn't match " + close, errorNode);
}
}
export function So... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/handlebars.min.js | clean_server/resources/app/node_modules/handlebars/dist/handlebars.min.js | /**!
@license
handlebars v4.0.6
Copyright (C) 2011-2016 by Yehuda Katz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | true |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/handlebars.amd.js | clean_server/resources/app/node_modules/handlebars/dist/handlebars.amd.js | /**!
@license
handlebars v4.0.6
Copyright (C) 2011-2016 by Yehuda Katz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | true |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/handlebars.runtime.amd.min.js | clean_server/resources/app/node_modules/handlebars/dist/handlebars.runtime.amd.min.js | /**!
@license
handlebars v4.0.6
Copyright (C) 2011-2016 by Yehuda Katz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/handlebars.runtime.amd.js | clean_server/resources/app/node_modules/handlebars/dist/handlebars.runtime.amd.js | /**!
@license
handlebars v4.0.6
Copyright (C) 2011-2016 by Yehuda Katz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | true |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/handlebars.runtime.min.js | clean_server/resources/app/node_modules/handlebars/dist/handlebars.runtime.min.js | /**!
@license
handlebars v4.0.6
Copyright (C) 2011-2016 by Yehuda Katz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/handlebars.runtime.js | clean_server/resources/app/node_modules/handlebars/dist/handlebars.runtime.js | /**!
@license
handlebars v4.0.6
Copyright (C) 2011-2016 by Yehuda Katz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | true |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/handlebars.amd.min.js | clean_server/resources/app/node_modules/handlebars/dist/handlebars.amd.min.js | /**!
@license
handlebars v4.0.6
Copyright (C) 2011-2016 by Yehuda Katz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | true |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/handlebars.js | clean_server/resources/app/node_modules/handlebars/dist/handlebars.js | /**!
@license
handlebars v4.0.6
Copyright (C) 2011-2016 by Yehuda Katz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | true |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/precompiler.js | clean_server/resources/app/node_modules/handlebars/dist/amd/precompiler.js | define(['exports', 'async', 'fs', './handlebars', 'path', 'source-map', 'uglify-js'], function (exports, _async, _fs, _handlebars, _path, _sourceMap, _uglifyJs) {
/* eslint-disable no-console */
'use strict';
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : {... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars.runtime.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars.runtime.js | define(['exports', 'module', './handlebars/base', './handlebars/safe-string', './handlebars/exception', './handlebars/utils', './handlebars/runtime', './handlebars/no-conflict'], function (exports, module, _handlebarsBase, _handlebarsSafeString, _handlebarsException, _handlebarsUtils, _handlebarsRuntime, _handlebarsNoC... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars.js | define(['exports', 'module', './handlebars.runtime', './handlebars/compiler/ast', './handlebars/compiler/base', './handlebars/compiler/compiler', './handlebars/compiler/javascript-compiler', './handlebars/compiler/visitor', './handlebars/no-conflict'], function (exports, module, _handlebarsRuntime, _handlebarsCompilerA... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/runtime.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/runtime.js | define(['exports', './utils', './exception', './base'], function (exports, _utils, _exception, _base) {
'use strict';
exports.__esModule = true;
exports.checkRevision = checkRevision;
exports.template = template;
exports.wrapProgram = wrapProgram;
exports.resolvePartial = resolvePartial;
exports.invokePa... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | true |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/base.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/base.js | define(['exports', './utils', './exception', './helpers', './decorators', './logger'], function (exports, _utils, _exception, _helpers, _decorators, _logger) {
'use strict';
exports.__esModule = true;
exports.HandlebarsEnvironment = HandlebarsEnvironment;
// istanbul ignore next
function _interopRequireDefa... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/safe-string.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/safe-string.js | define(['exports', 'module'], function (exports, module) {
// Build out our basic SafeString type
'use strict';
function SafeString(string) {
this.string = string;
}
SafeString.prototype.toString = SafeString.prototype.toHTML = function () {
return '' + this.string;
};
module.exports = SafeStri... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/no-conflict.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/no-conflict.js | define(['exports', 'module'], function (exports, module) {
/* global window */
'use strict';
module.exports = function (Handlebars) {
/* istanbul ignore next */
var root = typeof global !== 'undefined' ? global : window,
$Handlebars = root.Handlebars;
/* istanbul ignore next */
Handlebars... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/logger.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/logger.js | define(['exports', 'module', './utils'], function (exports, module, _utils) {
'use strict';
var logger = {
methodMap: ['debug', 'info', 'warn', 'error'],
level: 'info',
// Maps a given level value to the `methodMap` indexes above.
lookupLevel: function lookupLevel(level) {
if (typeof level =... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/decorators.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/decorators.js | define(['exports', './decorators/inline'], function (exports, _decoratorsInline) {
'use strict';
exports.__esModule = true;
exports.registerDefaultDecorators = registerDefaultDecorators;
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers.js | define(['exports', './helpers/block-helper-missing', './helpers/each', './helpers/helper-missing', './helpers/if', './helpers/log', './helpers/lookup', './helpers/with'], function (exports, _helpersBlockHelperMissing, _helpersEach, _helpersHelperMissing, _helpersIf, _helpersLog, _helpersLookup, _helpersWith) {
'use s... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/exception.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/exception.js | define(['exports', 'module'], function (exports, module) {
'use strict';
var errorProps = ['description', 'fileName', 'lineNumber', 'message', 'name', 'number', 'stack'];
function Exception(message, node) {
var loc = node && node.loc,
line = undefined,
column = undefined;
if (loc) {
... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/utils.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/utils.js | define(['exports'], function (exports) {
'use strict';
exports.__esModule = true;
exports.extend = extend;
exports.indexOf = indexOf;
exports.escapeExpression = escapeExpression;
exports.isEmpty = isEmpty;
exports.createFrame = createFrame;
exports.blockParams = blockParams;
exports.appendContextPath... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/decorators/inline.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/decorators/inline.js | define(['exports', 'module', '../utils'], function (exports, module, _utils) {
'use strict';
module.exports = function (instance) {
instance.registerDecorator('inline', function (fn, props, container, options) {
var ret = fn;
if (!props.partials) {
props.partials = {};
ret = functio... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/if.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/if.js | define(['exports', 'module', '../utils'], function (exports, module, _utils) {
'use strict';
module.exports = function (instance) {
instance.registerHelper('if', function (conditional, options) {
if (_utils.isFunction(conditional)) {
conditional = conditional.call(this);
}
// Default... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/block-helper-missing.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/block-helper-missing.js | define(['exports', 'module', '../utils'], function (exports, module, _utils) {
'use strict';
module.exports = function (instance) {
instance.registerHelper('blockHelperMissing', function (context, options) {
var inverse = options.inverse,
fn = options.fn;
if (context === true) {
... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/lookup.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/lookup.js | define(['exports', 'module'], function (exports, module) {
'use strict';
module.exports = function (instance) {
instance.registerHelper('lookup', function (obj, field) {
return obj && obj[field];
});
};
});
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/with.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/with.js | define(['exports', 'module', '../utils'], function (exports, module, _utils) {
'use strict';
module.exports = function (instance) {
instance.registerHelper('with', function (context, options) {
if (_utils.isFunction(context)) {
context = context.call(this);
}
var fn = options.fn;
... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/helper-missing.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/helper-missing.js | define(['exports', 'module', '../exception'], function (exports, module, _exception) {
'use strict';
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var _Exception = _interopRequireDefault(_exception);
module.exports = function (ins... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/each.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/each.js | define(['exports', 'module', '../utils', '../exception'], function (exports, module, _utils, _exception) {
'use strict';
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var _Exception = _interopRequireDefault(_exception);
module.exp... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/log.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/helpers/log.js | define(['exports', 'module'], function (exports, module) {
'use strict';
module.exports = function (instance) {
instance.registerHelper('log', function () /* message, options */{
var args = [undefined],
options = arguments[arguments.length - 1];
for (var i = 0; i < arguments.length - 1; i... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/visitor.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/visitor.js | define(['exports', 'module', '../exception'], function (exports, module, _exception) {
'use strict';
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var _Exception = _interopRequireDefault(_exception);
function Visitor() {
this.... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/javascript-compiler.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/javascript-compiler.js | define(['exports', 'module', '../base', '../exception', '../utils', './code-gen'], function (exports, module, _base, _exception, _utils, _codeGen) {
'use strict';
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var _Exception = _intero... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | true |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/base.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/base.js | define(['exports', './parser', './whitespace-control', './helpers', '../utils'], function (exports, _parser, _whitespaceControl, _helpers, _utils) {
'use strict';
exports.__esModule = true;
exports.parse = parse;
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? o... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/printer.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/printer.js | define(['exports', './visitor'], function (exports, _visitor) {
/* eslint-disable new-cap */
'use strict';
exports.__esModule = true;
exports.print = print;
exports.PrintVisitor = PrintVisitor;
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/whitespace-control.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/whitespace-control.js | define(['exports', 'module', './visitor'], function (exports, module, _visitor) {
'use strict';
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var _Visitor = _interopRequireDefault(_visitor);
function WhitespaceControl() {
var ... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/code-gen.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/code-gen.js | define(['exports', 'module', '../utils'], function (exports, module, _utils) {
/* global define */
'use strict';
var SourceNode = undefined;
try {
/* istanbul ignore next */
if (typeof define !== 'function' || !define.amd) {
// We don't support this in AMD environments. For these environments, w... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/ast.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/ast.js | define(['exports', 'module'], function (exports, module) {
'use strict';
var AST = {
// Public API used to evaluate derived attributes regarding AST nodes
helpers: {
// a mustache is definitely a helper if:
// * it is an eligible helper, and
// * it has at least one parameter or hash segm... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/parser.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/parser.js | define(["exports"], function (exports) {
/* istanbul ignore next */
/* Jison generated parser */
"use strict";
var handlebars = (function () {
var parser = { trace: function trace() {},
yy: {},
symbols_: { "error": 2, "root": 3, "program": 4, "EOF": 5, "program_repetitio... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | true |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/compiler.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/compiler.js | define(['exports', '../exception', '../utils', './ast'], function (exports, _exception, _utils, _ast) {
/* eslint-disable new-cap */
'use strict';
exports.__esModule = true;
exports.Compiler = Compiler;
exports.precompile = precompile;
exports.compile = compile;
// istanbul ignore next
function _inte... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | true |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/helpers.js | clean_server/resources/app/node_modules/handlebars/dist/amd/handlebars/compiler/helpers.js | define(['exports', '../exception'], function (exports, _exception) {
'use strict';
exports.__esModule = true;
exports.SourceLocation = SourceLocation;
exports.id = id;
exports.stripFlags = stripFlags;
exports.stripComment = stripComment;
exports.preparePath = preparePath;
exports.prepareMustache = prep... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/precompiler.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/precompiler.js | /* eslint-disable no-console */
'use strict';
// istanbul ignore next
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] =... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars.runtime.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars.runtime.js | 'use strict';
exports.__esModule = true;
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
// istanbul ignore next
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars.js | 'use strict';
exports.__esModule = true;
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var _handlebarsRuntime = require('./handlebars.runtime');
var _handlebarsRuntime2 = _interopRequireDefault(_handlebarsRuntime);
// Compiler imports
var... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/runtime.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/runtime.js | 'use strict';
exports.__esModule = true;
exports.checkRevision = checkRevision;
exports.template = template;
exports.wrapProgram = wrapProgram;
exports.resolvePartial = resolvePartial;
exports.invokePartial = invokePartial;
exports.noop = noop;
// istanbul ignore next
function _interopRequireDefault(obj) { return obj... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | true |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/base.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/base.js | 'use strict';
exports.__esModule = true;
exports.HandlebarsEnvironment = HandlebarsEnvironment;
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var _utils = require('./utils');
var _exception = require('./exception');
var _exception2 = _inte... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/safe-string.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/safe-string.js | // Build out our basic SafeString type
'use strict';
exports.__esModule = true;
function SafeString(string) {
this.string = string;
}
SafeString.prototype.toString = SafeString.prototype.toHTML = function () {
return '' + this.string;
};
exports['default'] = SafeString;
module.exports = exports['default'];
//# s... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/no-conflict.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/no-conflict.js | /* global window */
'use strict';
exports.__esModule = true;
exports['default'] = function (Handlebars) {
/* istanbul ignore next */
var root = typeof global !== 'undefined' ? global : window,
$Handlebars = root.Handlebars;
/* istanbul ignore next */
Handlebars.noConflict = function () {
if (root.Ha... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/logger.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/logger.js | 'use strict';
exports.__esModule = true;
var _utils = require('./utils');
var logger = {
methodMap: ['debug', 'info', 'warn', 'error'],
level: 'info',
// Maps a given level value to the `methodMap` indexes above.
lookupLevel: function lookupLevel(level) {
if (typeof level === 'string') {
var level... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/decorators.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/decorators.js | 'use strict';
exports.__esModule = true;
exports.registerDefaultDecorators = registerDefaultDecorators;
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var _decoratorsInline = require('./decorators/inline');
var _decoratorsInline2 = _interopR... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/helpers.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/helpers.js | 'use strict';
exports.__esModule = true;
exports.registerDefaultHelpers = registerDefaultHelpers;
// istanbul ignore next
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var _helpersBlockHelperMissing = require('./helpers/block-helper-missing');
var _helpersBlockHel... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/exception.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/exception.js | 'use strict';
exports.__esModule = true;
var errorProps = ['description', 'fileName', 'lineNumber', 'message', 'name', 'number', 'stack'];
function Exception(message, node) {
var loc = node && node.loc,
line = undefined,
column = undefined;
if (loc) {
line = loc.start.line;
column = loc.start... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/utils.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/utils.js | 'use strict';
exports.__esModule = true;
exports.extend = extend;
exports.indexOf = indexOf;
exports.escapeExpression = escapeExpression;
exports.isEmpty = isEmpty;
exports.createFrame = createFrame;
exports.blockParams = blockParams;
exports.appendContextPath = appendContextPath;
var escape = {
'&': '&',
'<':... | javascript | MIT | 0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409 | 2026-01-05T03:41:26.784159Z | false |
danieltoorani/adminScheduler | https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/decorators/inline.js | clean_server/resources/app/node_modules/handlebars/dist/cjs/handlebars/decorators/inline.js | 'use strict';
exports.__esModule = true;
var _utils = require('../utils');
exports['default'] = function (instance) {
instance.registerDecorator('inline', function (fn, props, container, options) {
var ret = fn;
if (!props.partials) {
props.partials = {};
ret = function (context, options) {
... | 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.