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/node_modules/mysql/lib/protocol/packets/UseOldPasswordPacket.js
clean_server/node_modules/mysql/lib/protocol/packets/UseOldPasswordPacket.js
module.exports = UseOldPasswordPacket; function UseOldPasswordPacket(options) { options = options || {}; this.firstByte = options.firstByte || 0xfe; } UseOldPasswordPacket.prototype.parse = function(parser) { this.firstByte = parser.parseUnsignedNumber(1); }; UseOldPasswordPacket.prototype.write = function(wri...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/packets/ComChangeUserPacket.js
clean_server/node_modules/mysql/lib/protocol/packets/ComChangeUserPacket.js
module.exports = ComChangeUserPacket; function ComChangeUserPacket(options) { options = options || {}; this.command = 0x11; this.user = options.user; this.scrambleBuff = options.scrambleBuff; this.database = options.database; this.charsetNumber = options.charsetNumber; } ComChangeUser...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/packets/ClientAuthenticationPacket.js
clean_server/node_modules/mysql/lib/protocol/packets/ClientAuthenticationPacket.js
var Buffer = require('safe-buffer').Buffer; module.exports = ClientAuthenticationPacket; function ClientAuthenticationPacket(options) { options = options || {}; this.clientFlags = options.clientFlags; this.maxPacketSize = options.maxPacketSize; this.charsetNumber = options.charsetNumber; this.filler ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/packets/FieldPacket.js
clean_server/node_modules/mysql/lib/protocol/packets/FieldPacket.js
module.exports = FieldPacket; function FieldPacket(options) { options = options || {}; this.catalog = options.catalog; this.db = options.db; this.table = options.table; this.orgTable = options.orgTable; this.name = options.name; this.orgName = options.orgName; this.charsetNr ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/packets/Field.js
clean_server/node_modules/mysql/lib/protocol/packets/Field.js
var Types = require('../constants/types'); module.exports = Field; function Field(options) { options = options || {}; this.parser = options.parser; this.packet = options.packet; this.db = options.packet.db; this.table = options.packet.table; this.name = options.packet.name; this.type = typeToSt...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/packets/SSLRequestPacket.js
clean_server/node_modules/mysql/lib/protocol/packets/SSLRequestPacket.js
// http://dev.mysql.com/doc/internals/en/ssl.html // http://dev.mysql.com/doc/internals/en/connection-phase-packets.html#packet-Protocol::SSLRequest var ClientConstants = require('../constants/client'); module.exports = SSLRequestPacket; function SSLRequestPacket(options) { options = options || {}; this.clientFl...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/packets/LocalDataFilePacket.js
clean_server/node_modules/mysql/lib/protocol/packets/LocalDataFilePacket.js
module.exports = LocalDataFilePacket; /** * Create a new LocalDataFilePacket * @constructor * @param {Buffer} data The data contents of the packet * @public */ function LocalDataFilePacket(data) { this.data = data; } LocalDataFilePacket.prototype.write = function(writer) { writer.writeBuffer(this.data); };
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/packets/OkPacket.js
clean_server/node_modules/mysql/lib/protocol/packets/OkPacket.js
module.exports = OkPacket; function OkPacket(options) { options = options || {}; this.fieldCount = undefined; this.affectedRows = undefined; this.insertId = undefined; this.serverStatus = undefined; this.warningCount = undefined; this.message = undefined; this.protocol41 = options.protocol...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/packets/ComPingPacket.js
clean_server/node_modules/mysql/lib/protocol/packets/ComPingPacket.js
module.exports = ComPingPacket; function ComPingPacket() { this.command = 0x0e; } ComPingPacket.prototype.write = function(writer) { writer.writeUnsignedNumber(1, this.command); }; ComPingPacket.prototype.parse = function(parser) { this.command = parser.parseUnsignedNumber(1); };
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/constants/ssl_profiles.js
clean_server/node_modules/mysql/lib/protocol/constants/ssl_profiles.js
// Certificates for Amazon RDS exports['Amazon RDS'] = { ca: [ /** * Amazon RDS global certificate 2010 to 2015 * * CN = aws.amazon.com/rds/ * OU = RDS * O = Amazon.com * L = Seattle * ST = Washington * C = US * P = 2010-04-05T22:44:31Z/2015-04-04T22:41:3...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/constants/types.js
clean_server/node_modules/mysql/lib/protocol/constants/types.js
// Manually extracted from mysql-5.7.9/include/mysql.h.pp // some more info here: http://dev.mysql.com/doc/refman/5.5/en/c-api-prepared-statement-type-codes.html exports.DECIMAL = 0x00; // aka DECIMAL (http://dev.mysql.com/doc/refman/5.0/en/precision-math-decimal-changes.html) exports.TINY = 0x01; // aka TIN...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/constants/field_flags.js
clean_server/node_modules/mysql/lib/protocol/constants/field_flags.js
// Manually extracted from mysql-5.5.23/include/mysql_com.h exports.NOT_NULL_FLAG = 1; /* Field can't be NULL */ exports.PRI_KEY_FLAG = 2; /* Field is part of a primary key */ exports.UNIQUE_KEY_FLAG = 4; /* Field is part of a unique key */ exports.MULTIPLE_KEY_FLAG = 8; /* Field is part of a key */ exports....
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/constants/server_status.js
clean_server/node_modules/mysql/lib/protocol/constants/server_status.js
// Manually extracted from mysql-5.5.23/include/mysql_com.h /** Is raised when a multi-statement transaction has been started, either explicitly, by means of BEGIN or COMMIT AND CHAIN, or implicitly, by the first transactional statement, when autocommit=off. */ exports.SERVER_STATUS_IN_TRANS = 1; ex...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/constants/charsets.js
clean_server/node_modules/mysql/lib/protocol/constants/charsets.js
exports.BIG5_CHINESE_CI = 1; exports.LATIN2_CZECH_CS = 2; exports.DEC8_SWEDISH_CI = 3; exports.CP850_GENERAL_CI = 4; exports.LATIN1_GERMAN1_CI = 5; exports.HP8_ENGLISH_CI = 6; exports.KOI8R_GENERAL_CI = 7; exports.LATIN1_SWEDISH_CI ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/constants/client.js
clean_server/node_modules/mysql/lib/protocol/constants/client.js
// Manually extracted from mysql-5.5.23/include/mysql_com.h exports.CLIENT_LONG_PASSWORD = 1; /* new more secure passwords */ exports.CLIENT_FOUND_ROWS = 2; /* Found instead of affected rows */ exports.CLIENT_LONG_FLAG = 4; /* Get all column flags */ exports.CLIENT_CONNECT_WITH_DB = 8; /* One can s...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/mysql/lib/protocol/constants/errors.js
clean_server/node_modules/mysql/lib/protocol/constants/errors.js
/** * MySQL error constants * * Extracted from version 5.7.18 * * !! Generated by generate-error-constants.js, do not modify by hand !! */ exports.EE_CANTCREATEFILE = 1; exports.EE_READ ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
true
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/base64-js/base64js.min.js
clean_server/node_modules/base64-js/base64js.min.js
(function(r){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=r()}else if(typeof define==="function"&&define.amd){define([],r)}else{var e;if(typeof window!=="undefined"){e=window}else if(typeof global!=="undefined"){e=global}else if(typeof self!=="undefined"){e=self}else{e=this}e.base64js=r()}}...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/base64-js/test/url-safe.js
clean_server/node_modules/base64-js/test/url-safe.js
var test = require('tape') var b64 = require('../lib/b64') test('decode url-safe style base64 strings', function (t) { var expected = [0xff, 0xff, 0xbe, 0xff, 0xef, 0xbf, 0xfb, 0xef, 0xff] var actual = b64.toByteArray('//++/++/++//') for (var i = 0; i < actual.length; i++) { t.equal(actual[i], expected[i]) ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/base64-js/test/convert.js
clean_server/node_modules/base64-js/test/convert.js
var test = require('tape') var b64 = require('../lib/b64') var checks = [ 'a', 'aa', 'aaa', 'hi', 'hi!', 'hi!!', 'sup', 'sup?', 'sup?!' ] test('convert to base64 and back', function (t) { t.plan(checks.length) for (var i = 0; i < checks.length; i++) { var check = checks[i] var b64Str, ar...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/base64-js/test/big-data.js
clean_server/node_modules/base64-js/test/big-data.js
var test = require('tape') var b64 = require('../lib/b64') test('convert big data to base64', function (t) { var b64str, arr, i, length var big = new Uint8Array(64 * 1024 * 1024) for (i = 0, length = big.length; i < length; ++i) { big[i] = i % 256 } b64str = b64.fromByteArray(big) arr = b64.toByteArray...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/base64-js/lib/b64.js
clean_server/node_modules/base64-js/lib/b64.js
'use strict' exports.toByteArray = toByteArray exports.fromByteArray = fromByteArray var lookup = [] var revLookup = [] var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array function init () { var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' for (var i = 0, len = code.leng...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/chromium-pickle-js/lib/pickle.js
clean_server/node_modules/chromium-pickle-js/lib/pickle.js
// sizeof(T). var SIZE_INT32 = 4 var SIZE_UINT32 = 4 var SIZE_INT64 = 8 var SIZE_UINT64 = 8 var SIZE_FLOAT = 4 var SIZE_DOUBLE = 8 // The allocation granularity of the payload. var PAYLOAD_UNIT = 64 // Largest JS number. var CAPACITY_READ_ONLY = 9007199254740992 // Aligns 'i' by rounding it up to the next multiple o...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/chromium-pickle-js/lib/exports.js
clean_server/node_modules/chromium-pickle-js/lib/exports.js
var Pickle = require('./pickle') module.exports = { createEmpty: function () { return new Pickle() }, createFromBuffer: function (buffer) { return new Pickle(buffer) } }
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/delayed-stream/lib/delayed_stream.js
clean_server/node_modules/delayed-stream/lib/delayed_stream.js
var Stream = require('stream').Stream; var util = require('util'); module.exports = DelayedStream; function DelayedStream() { this.source = null; this.dataSize = 0; this.maxDataSize = 1024 * 1024; this.pauseStream = true; this._maxDataSizeExceeded = false; this._released = false; this._bufferedEvents = ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/minimist/index.js
clean_server/node_modules/minimist/index.js
module.exports = function (args, opts) { if (!opts) opts = {}; var flags = { bools : {}, strings : {}, unknownFn: null }; if (typeof opts['unknown'] === 'function') { flags.unknownFn = opts['unknown']; } if (typeof opts['boolean'] === 'boolean' && opts['boolean']) { flags.allBoo...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/minimist/test/num.js
clean_server/node_modules/minimist/test/num.js
var parse = require('../'); var test = require('tape'); test('nums', function (t) { var argv = parse([ '-x', '1234', '-y', '5.67', '-z', '1e7', '-w', '10f', '--hex', '0xdeadbeef', '789' ]); t.deepEqual(argv, { x : 1234, y : 5.67, z : 1...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/minimist/test/unknown.js
clean_server/node_modules/minimist/test/unknown.js
var parse = require('../'); var test = require('tape'); test('boolean and alias is not unknown', function (t) { var unknown = []; function unknownFn(arg) { unknown.push(arg); return false; } var aliased = [ '-h', 'true', '--derp', 'true' ]; var regular = [ '--herp', 'true', '-d', '...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/minimist/test/kv_short.js
clean_server/node_modules/minimist/test/kv_short.js
var parse = require('../'); var test = require('tape'); test('short -k=v' , function (t) { t.plan(1); var argv = parse([ '-b=123' ]); t.deepEqual(argv, { b: 123, _: [] }); }); test('multi short -k=v' , function (t) { t.plan(1); var argv = parse([ '-a=whatever', '-b=robots' ]); t.deep...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/minimist/test/long.js
clean_server/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/node_modules/minimist/test/default_bool.js
clean_server/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/node_modules/minimist/test/dash.js
clean_server/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/node_modules/minimist/test/whitespace.js
clean_server/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/node_modules/minimist/test/short.js
clean_server/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/node_modules/minimist/test/parse.js
clean_server/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/node_modules/minimist/test/parse_modified.js
clean_server/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/node_modules/minimist/test/all_bool.js
clean_server/node_modules/minimist/test/all_bool.js
var parse = require('../'); var test = require('tape'); test('flag boolean true (default all --args to boolean)', function (t) { var argv = parse(['moo', '--honk', 'cow'], { boolean: true }); t.deepEqual(argv, { honk: true, _: ['moo', 'cow'] }); t.deepEqual(typeof ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/minimist/test/stop_early.js
clean_server/node_modules/minimist/test/stop_early.js
var parse = require('../'); var test = require('tape'); test('stops parsing on the first non-option when stopEarly is set', function (t) { var argv = parse(['--aaa', 'bbb', 'ccc', '--ddd'], { stopEarly: true }); t.deepEqual(argv, { aaa: 'bbb', _: ['ccc', '--ddd'] }); t.end...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/minimist/test/dotted.js
clean_server/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/node_modules/minimist/test/bool.js
clean_server/node_modules/minimist/test/bool.js
var parse = require('../'); var test = require('tape'); test('flag boolean default false', function (t) { var argv = parse(['moo'], { boolean: ['t', 'verbose'], default: { verbose: false, t: false } }); t.deepEqual(argv, { verbose: false, t: false, _: ['moo'] ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/minimist/example/parse.js
clean_server/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/node_modules/pg-pool/index.js
clean_server/node_modules/pg-pool/index.js
'use strict' const EventEmitter = require('events').EventEmitter const NOOP = function () { } class IdleItem { constructor (client, timeoutId) { this.client = client this.timeoutId = timeoutId } } function throwOnRelease () { throw new Error('Release called on client which has already been released to ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/setup.js
clean_server/node_modules/pg-pool/test/setup.js
const crash = reason => { process.on(reason, err => { console.error(reason, err.stack) process.exit(-1) }) } crash('unhandledRejection') crash('uncaughtError') crash('warning')
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/connection-timeout.js
clean_server/node_modules/pg-pool/test/connection-timeout.js
'use strict' const net = require('net') const co = require('co') const expect = require('expect.js') const describe = require('mocha').describe const it = require('mocha').it const before = require('mocha').before const after = require('mocha').after const Pool = require('../') describe('connection timeout', () => {...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/idle-timeout.js
clean_server/node_modules/pg-pool/test/idle-timeout.js
'use strict' const co = require('co') const expect = require('expect.js') const describe = require('mocha').describe const it = require('mocha').it const Pool = require('../') const wait = time => new Promise((resolve) => setTimeout(resolve, time)) describe('idle timeout', () => { it('should timeout and remove th...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/index.js
clean_server/node_modules/pg-pool/test/index.js
'use strict' const expect = require('expect.js') const _ = require('lodash') const describe = require('mocha').describe const it = require('mocha').it const Pool = require('../') describe('pool', function () { describe('with callbacks', function () { it('works totally unconfigured', function (done) { con...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/events.js
clean_server/node_modules/pg-pool/test/events.js
'use strict' const expect = require('expect.js') const EventEmitter = require('events').EventEmitter const describe = require('mocha').describe const it = require('mocha').it const Pool = require('../') describe('events', function () { it('emits connect before callback', function (done) { const pool = new Pool(...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/connection-strings.js
clean_server/node_modules/pg-pool/test/connection-strings.js
const expect = require('expect.js') const describe = require('mocha').describe const it = require('mocha').it const Pool = require('../') describe('Connection strings', function () { it('pool delegates connectionString property to client', function (done) { const connectionString = 'postgres://foo:bar@baz:1234/x...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/sizing.js
clean_server/node_modules/pg-pool/test/sizing.js
const expect = require('expect.js') const co = require('co') const _ = require('lodash') const describe = require('mocha').describe const it = require('mocha').it const Pool = require('../') describe('pool size of 1', () => { it('can create a single client and use it once', co.wrap(function * () { const pool =...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/verify.js
clean_server/node_modules/pg-pool/test/verify.js
'use strict' const expect = require('expect.js') const describe = require('mocha').describe const it = require('mocha').it const Pool = require('../') describe('verify', () => { it('verifies a client with a callback', false, (done) => { const pool = new Pool({ verify: (client, cb) => { client.rel...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/error-handling.js
clean_server/node_modules/pg-pool/test/error-handling.js
'use strict' const co = require('co') const expect = require('expect.js') const describe = require('mocha').describe const it = require('mocha').it const Pool = require('../') describe('pool error handling', function () { it('Should complete these queries without dying', function (done) { const pool = new Pool...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/ending.js
clean_server/node_modules/pg-pool/test/ending.js
'use strict' const co = require('co') const expect = require('expect.js') const describe = require('mocha').describe const it = require('mocha').it const Pool = require('../') describe('pool ending', () => { it('ends without being used', (done) => { const pool = new Pool() pool.end(done) }) it('ends w...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/timeout.js
clean_server/node_modules/pg-pool/test/timeout.js
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/bring-your-own-promise.js
clean_server/node_modules/pg-pool/test/bring-your-own-promise.js
'use strict' const co = require('co') const expect = require('expect.js') const describe = require('mocha').describe const it = require('mocha').it const BluebirdPromise = require('bluebird') const Pool = require('../') const checkType = promise => { expect(promise).to.be.a(BluebirdPromise) return promise.catch(...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/pg-pool/test/logging.js
clean_server/node_modules/pg-pool/test/logging.js
const expect = require('expect.js') const describe = require('mocha').describe const it = require('mocha').it const Pool = require('../') describe('logging', function () { it('logs to supplied log function if given', function () { const messages = [] const log = function (msg) { messages.push(msg) ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/util-deprecate/browser.js
clean_server/node_modules/util-deprecate/browser.js
/** * Module exports. */ module.exports = deprecate; /** * Mark that a method should not be used. * Returns a modified function which warns once by default. * * If `localStorage.noDeprecation = true` is set, then it is a no-op. * * If `localStorage.throwDeprecation = true` is set, then deprecated functions ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/util-deprecate/node.js
clean_server/node_modules/util-deprecate/node.js
/** * For Node.js, simply re-export the core `util.deprecate` function. */ module.exports = require('util').deprecate;
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLDeclaration.js
clean_server/node_modules/xmlbuilder/lib/XMLDeclaration.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLDeclaration, XMLNode, isObject, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ct...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLText.js
clean_server/node_modules/xmlbuilder/lib/XMLText.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLNode, XMLText, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__sup...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLStringWriter.js
clean_server/node_modules/xmlbuilder/lib/XMLStringWriter.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLCData, XMLComment, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDeclaration, XMLDocType, XMLElement, XMLProcessingInstruction, XMLRaw, XMLStringWriter, XMLText, XMLWriterBase, extend = function(child, parent) { for (var key in parent) { if...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLDTDNotation.js
clean_server/node_modules/xmlbuilder/lib/XMLDTDNotation.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLDTDNotation, XMLNode, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); chil...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLDocument.js
clean_server/node_modules/xmlbuilder/lib/XMLDocument.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLDocument, XMLNode, XMLStringWriter, XMLStringifier, isPlainObject, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent....
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js
clean_server/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLNode, XMLProcessingInstruction, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ct...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLAttribute.js
clean_server/node_modules/xmlbuilder/lib/XMLAttribute.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLAttribute; module.exports = XMLAttribute = (function() { function XMLAttribute(parent, name, value) { this.options = parent.options; this.stringify = parent.stringify; if (name == null) { throw new Error("Missing attribute name ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/index.js
clean_server/node_modules/xmlbuilder/lib/index.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLDocument, XMLDocumentCB, XMLStreamWriter, XMLStringWriter, assign, isFunction, ref; ref = require('./Utility'), assign = ref.assign, isFunction = ref.isFunction; XMLDocument = require('./XMLDocument'); XMLDocumentCB = require('./XMLDocumentCB'); XML...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLDocType.js
clean_server/node_modules/xmlbuilder/lib/XMLDocType.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDocType, XMLNode, isObject, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } cto...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLRaw.js
clean_server/node_modules/xmlbuilder/lib/XMLRaw.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLNode, XMLRaw, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__supe...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLWriterBase.js
clean_server/node_modules/xmlbuilder/lib/XMLWriterBase.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLWriterBase, hasProp = {}.hasOwnProperty; module.exports = XMLWriterBase = (function() { function XMLWriterBase(options) { var key, ref, ref1, ref2, ref3, ref4, value; options || (options = {}); this.pretty = options.pretty || false;...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLStringifier.js
clean_server/node_modules/xmlbuilder/lib/XMLStringifier.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLStringifier, camelCase, kebabCase, ref, snakeCase, titleCase, bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }, hasProp = {}.hasOwnProperty; ref = require('./Utility'), camelCase = ref.camelCase, titleCase = ref.titleC...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLDTDElement.js
clean_server/node_modules/xmlbuilder/lib/XMLDTDElement.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLDTDElement, XMLNode, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLNode.js
clean_server/node_modules/xmlbuilder/lib/XMLNode.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLCData, XMLComment, XMLDeclaration, XMLDocType, XMLElement, XMLNode, XMLProcessingInstruction, XMLRaw, XMLText, isEmpty, isFunction, isObject, ref, hasProp = {}.hasOwnProperty; ref = require('./Utility'), isObject = ref.isObject, isFunction = ref.isFuncti...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLCData.js
clean_server/node_modules/xmlbuilder/lib/XMLCData.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLCData, XMLNode, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__su...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLElement.js
clean_server/node_modules/xmlbuilder/lib/XMLElement.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLAttribute, XMLElement, XMLNode, isFunction, isObject, ref, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototyp...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/Utility.js
clean_server/node_modules/xmlbuilder/lib/Utility.js
// Generated by CoffeeScript 1.10.0 (function() { var assign, camelCase, capitalize, isArray, isEmpty, isFunction, isObject, isPlainObject, kebabCase, snakeCase, titleCase, words, slice = [].slice, hasProp = {}.hasOwnProperty; assign = function() { var i, key, len, source, sources, target; target =...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLStreamWriter.js
clean_server/node_modules/xmlbuilder/lib/XMLStreamWriter.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLCData, XMLComment, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDeclaration, XMLDocType, XMLElement, XMLProcessingInstruction, XMLRaw, XMLStreamWriter, XMLText, XMLWriterBase, extend = function(child, parent) { for (var key in parent) { if...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLComment.js
clean_server/node_modules/xmlbuilder/lib/XMLComment.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLComment, XMLNode, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLDTDAttList.js
clean_server/node_modules/xmlbuilder/lib/XMLDTDAttList.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLDTDAttList, XMLNode, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLDocumentCB.js
clean_server/node_modules/xmlbuilder/lib/XMLDocumentCB.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLAttribute, XMLCData, XMLComment, XMLDTDAttList, XMLDTDElement, XMLDTDEntity, XMLDTDNotation, XMLDeclaration, XMLDocType, XMLDocumentCB, XMLElement, XMLProcessingInstruction, XMLRaw, XMLStringWriter, XMLStringifier, XMLText, isFunction, isObject, isPlainObject, ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/xmlbuilder/lib/XMLDTDEntity.js
clean_server/node_modules/xmlbuilder/lib/XMLDTDEntity.js
// Generated by CoffeeScript 1.10.0 (function() { var XMLDTDEntity, XMLNode, isObject, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/deep-extend/index.js
clean_server/node_modules/deep-extend/index.js
module.exports = require('./lib/deep-extend');
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/deep-extend/lib/deep-extend.js
clean_server/node_modules/deep-extend/lib/deep-extend.js
/*! * @description Recursive object extending * @author Viacheslav Lotsmanov <lotsmanov89@gmail.com> * @license MIT * * The MIT License (MIT) * * Copyright (c) 2013-2015 Viacheslav Lotsmanov * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated docu...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/split/index.js
clean_server/node_modules/split/index.js
//filter will reemit the data if cb(err,pass) pass is truthy // reduce is more tricky // maybe we want to group the reductions or emit progress updates occasionally // the most basic reduce just emits one 'data' event after it has recieved 'end' var through = require('through') var Decoder = require('string_decoder'...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/split/test/partitioned_unicode.js
clean_server/node_modules/split/test/partitioned_unicode.js
var it = require('it-is').style('colour') , split = require('..') exports ['split data with partitioned unicode character'] = function (test) { var s = split(/,/g) , caughtError = false , rows = [] s.on('error', function (err) { caughtError = true }) s.on('data', function (row) { rows.push(row...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/split/test/try_catch.asynct.js
clean_server/node_modules/split/test/try_catch.asynct.js
var it = require('it-is').style('colour') , split = require('..') exports ['emit mapper exceptions as error events'] = function (test) { var s = split(JSON.parse) , caughtError = false , rows = [] s.on('error', function (err) { caughtError = true }) s.on('data', function (row) { rows.push(row...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/split/test/options.asynct.js
clean_server/node_modules/split/test/options.asynct.js
var it = require('it-is').style('colour') , split = require('..') exports ['maximum buffer limit'] = function (test) { var s = split(JSON.parse, null, { maxLength: 2 }) , caughtError = false , rows = [] s.on('error', function (err) { caughtError = true }) s.on('data', function (row) { row...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/split/test/split.asynct.js
clean_server/node_modules/split/test/split.asynct.js
var es = require('event-stream') , it = require('it-is').style('colour') , d = require('ubelt') , split = require('..') , join = require('path').join , fs = require('fs') , Stream = require('stream').Stream , Readable = require('stream').Readable , spec = require('stream-spec') , through = require('th...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/split/examples/pretty.js
clean_server/node_modules/split/examples/pretty.js
var inspect = require('util').inspect var es = require('event-stream') //load event-stream var split = require('../') if(!module.parent) { es.pipe( //pipe joins streams together process.openStdin(), //open stdin split(), //split stream...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/util-provisioning-profiles.js
clean_server/node_modules/electron-osx-sign/util-provisioning-profiles.js
/** * @module util-provisioning-profiles */ 'use strict' const path = require('path') const Promise = require('bluebird') const plist = require('plist') const util = require('./util') const debuglog = util.debuglog const debugwarn = util.debugwarn const getAppContentsPath = util.getAppContentsPath const flatList ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/flat.js
clean_server/node_modules/electron-osx-sign/flat.js
/** * @module flat */ 'use strict' const path = require('path') const Promise = require('bluebird') const util = require('./util') const debuglog = util.debuglog const debugwarn = util.debugwarn const execFileAsync = util.execFileAsync const validateOptsAppAsync = util.validateOptsAppAsync const validateOptsPlatf...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/index.js
clean_server/node_modules/electron-osx-sign/index.js
/** * @module electron-osx-sign */ 'use strict' const sign = require('./sign') const flat = require('./flat') /** * This function is a normal callback implementation. * @param {Object} opts - Options. * @param {RequestCallback} cb - Callback. */ module.exports = sign.sign // Aliasing /** * This function is a...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/sign.js
clean_server/node_modules/electron-osx-sign/sign.js
/** * @module sign */ 'use strict' const path = require('path') const Promise = require('bluebird') const compareVersion = require('compare-version') const util = require('./util') const debuglog = util.debuglog const debugwarn = util.debugwarn const getAppContentsPath = util.getAppContentsPath const execFileAsyn...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/util-entitlements.js
clean_server/node_modules/electron-osx-sign/util-entitlements.js
/** * @module util-entitlements */ 'use strict' const path = require('path') const plist = require('plist') const tempfile = require('tempfile') const util = require('./util') const debuglog = util.debuglog const getAppContentsPath = util.getAppContentsPath const readFileAsync = util.readFileAsync const writeFile...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/util.js
clean_server/node_modules/electron-osx-sign/util.js
/** * @module util */ 'use strict' const child = require('child_process') const fs = require('fs') const path = require('path') const Promise = require('bluebird') const debug = require('debug') /** * This callback is used across signing and flattening. * @callback RequestCallback * @param {?Error} err */ /*...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/util-identities.js
clean_server/node_modules/electron-osx-sign/util-identities.js
/** * @module util-identities */ 'use strict' const util = require('./util') const debuglog = util.debuglog const flatList = util.flatList const execFileAsync = util.execFileAsync /** * This function returns a promise checking the indentity proposed and updates the identity option to a exact finding from results....
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/thenables.js
clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/thenables.js
"use strict"; module.exports = function(Promise, INTERNAL) { var util = require("./util"); var errorObj = util.errorObj; var isObject = util.isObject; function tryConvertToPromise(obj, context) { if (isObject(obj)) { if (obj instanceof Promise) return obj; var then = getThen(obj); if (then ...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/es5.js
clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/es5.js
var isES5 = (function(){ "use strict"; return this === undefined; })(); if (isES5) { module.exports = { freeze: Object.freeze, defineProperty: Object.defineProperty, getDescriptor: Object.getOwnPropertyDescriptor, keys: Object.keys, names: Object.getOwnPropertyNames,...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/reduce.js
clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/reduce.js
"use strict"; module.exports = function(Promise, PromiseArray, apiRejection, tryConvertToPromise, INTERNAL, debug) { var getDomain = Promise._getDomain; var util = require("./util"); var try...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/any.js
clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/any.js
"use strict"; module.exports = function(Promise) { var SomePromiseArray = Promise._SomePromiseArray; function any(promises) { var ret = new SomePromiseArray(promises); var promise = ret.promise(); ret.setHowMany(1); ret.setUnwrap(); ret.init(); return promise; } Promise.any = function (promises...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/generators.js
clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/generators.js
"use strict"; module.exports = function(Promise, apiRejection, INTERNAL, tryConvertToPromise, Proxyable, debug) { var errors = require("./errors"); var TypeError = errors.TypeError; var util...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/map.js
clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/map.js
"use strict"; module.exports = function(Promise, PromiseArray, apiRejection, tryConvertToPromise, INTERNAL, debug) { var getDomain = Promise._getDomain; var util = require("./util"); var try...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false
danieltoorani/adminScheduler
https://github.com/danieltoorani/adminScheduler/blob/0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409/clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/call_get.js
clean_server/node_modules/electron-osx-sign/node_modules/bluebird/js/release/call_get.js
"use strict"; var cr = Object.create; if (cr) { var callerCache = cr(null); var getterCache = cr(null); callerCache[" size"] = getterCache[" size"] = 0; } module.exports = function(Promise) { var util = require("./util"); var canEvaluate = util.canEvaluate; var isIdentifier = util.isIdentifier; var getMet...
javascript
MIT
0ebe9ed652c6bbe95615bf9c7f3db69f54b4a409
2026-01-05T03:41:26.784159Z
false