_id
stringlengths
2
6
title
stringlengths
0
58
partition
stringclasses
3 values
text
stringlengths
52
373k
language
stringclasses
1 value
meta_information
dict
q3600
train
function (prefix, preout, messages) { if (prefix && this.LEVELS[prefix] < this.level) { return; } var msg = ""; for (var i = 0; i < messages.length; i++) { 0 < i ? msg += ' ' + messages[i]: msg += messages[i]; } var out = msg; if (prefix) ...
javascript
{ "resource": "" }
q3601
hyphenateText
train
function hyphenateText(dom, forceHyphenateAllChildren) { if (dom.childNodes !== undefined) { dom.childNodes.forEach(function(node) { if (node.nodeName === '#text' && !isSkippable(node) && (forceHyphenateAllChildren || isPresent(options.elements, dom.tagName))) { node.value = hypher.hyphenate...
javascript
{ "resource": "" }
q3602
isSkippable
train
function isSkippable(node) { var result = false; if (node && node.parentNode && node.parentNode.attrs && Array.isArray(node.parentNode.attrs)) { node.parentNode.attrs.forEach(function(attr) { if (attr.name && attr.value && attr.name === HYPHENATE_DATA_ATTR && attr.value === 'false') { re...
javascript
{ "resource": "" }
q3603
isIgnoredFile
train
function isIgnoredFile(file) { if (options.ignore !== undefined) { var result = false; options.ignore.forEach(function(pattern) { if (minimatch(file, pattern)) { result = true; return false; } }); return result; } return false; }
javascript
{ "resource": "" }
q3604
filter
train
function filter(tree, query, options) { var compiledQuery = _.isFunction(query) ? query : _.matches(query); var settings = _.defaults(options, { childNode: ['children'] }); settings.childNode = _.castArray(settings.childNode); var seekDown = function seekDown(tree) { return tree.filte...
javascript
{ "resource": "" }
q3605
hasChildren
train
function hasChildren(branch, options) { var settings = _.defaults(options, { childNode: ['children'] }); return settings.childNode.some(function (key) { return branch[key] && _.isArray(branch[key]) && branch[key].length; }); }
javascript
{ "resource": "" }
q3606
attemptNext
train
function attemptNext() { if (--settings.attempts > 0 && dirty) { dirty = false; // Mark sweep as clean - will get dirty if resolver sees a function return resolver(base, []).then(attemptNext); } else { resolve(); } }
javascript
{ "resource": "" }
q3607
sortBy
train
function sortBy(tree, propertyName) { var _this = this; // It is needed an array structure to sort. if (!_.isArray(tree)) tree = [tree]; tree.forEach(function (item) { return _(item).keys().forEach(function (key) { if (_.isArray(item[key])) item[key] = _this.sortBy(item[key], propertyName...
javascript
{ "resource": "" }
q3608
train
function() { this.jsonInit({ "message0": "%1", "args0": [ { "type": "field_variable", "name": "CLONE_NAME_OPTION", "variableTypes": [Blockly.CLONE_NAME_VARIABLE_TYPE], "variable": Blockly.Msg.DEFAULT_CLONE_NAME } ], "colour": Blockly.Co...
javascript
{ "resource": "" }
q3609
defaultTheme
train
function defaultTheme(theme) { if (theme == null) return Form.defaultProps.theme if (typeof theme !== 'object') { throw new Error('Invalid Frig theme. Expected an object') } Form.defaultProps.theme = theme UnboundInput.defaultProps.theme = theme return true }
javascript
{ "resource": "" }
q3610
Argument
train
function Argument(handler, options, desc) { if (!options.hasOwnProperty('scope')) { options.scope = 'global'; } this._parent = null; this._name = null; this._options = options; this._desc = desc; this._handler = handler; return this; }
javascript
{ "resource": "" }
q3611
train
function(model, at){ model = new this._Model(model, this.options.Model.options); if (!this.hasModel(model)) { // Attach events to the model that will signal collection events this.attachModelEvents(model); // If _models is empty, then we make sure to push instead of...
javascript
{ "resource": "" }
q3612
train
function(index){ var len = arguments.length, i = 0, results; if (len > 1) { results = []; while(len--){ results.push(this.get(arguments[i++])); } return results; } return this._models[index]; }
javascript
{ "resource": "" }
q3613
train
function(model){ if (this.hasModel(model)) { // Clean up when removing so that it doesn't try removing itself from the collection this.detachModelEvents(model); this._models.erase(model); this.length = this._models.length; this._changed = true; ...
javascript
{ "resource": "" }
q3614
train
function(oldModel, newModel){ var index; if (oldModel && newModel && this.hasModel(oldModel) && !this.hasModel(newModel)) { index = this.indexOf(oldModel); if (index > -1) { this.act(function(){ this.add(newModel, index); ...
javascript
{ "resource": "" }
q3615
fireRequest
train
function fireRequest(urlStr, callback) { var start = Date.now(); request({ url: urlStr, method: 'GET', maxRedirects: 8, timeout: 10 * 1000 //headers: { 'User-Agent': 'woobot/2.0' } }, function (error, response) { callback(error, response, Date.now() - start); }); }
javascript
{ "resource": "" }
q3616
validate
train
function validate(options) { const schema = joi.object().keys({ actionName: joi.string().required(), authKey: joi.string().required(), modelName: joi.string().required(), acl: joi.object(), aclContextName: joi.string().required() }); const errorMsg = 'Invalid rule opt...
javascript
{ "resource": "" }
q3617
makeme
train
function makeme (dir,mode,cb){ var callback = function(err,parent){ //console.log('makeme: ',dir) if(err) throw new Error(err) if(parent){ // replace root of dir with parent dir = path.join(parent,path.basename(dir)); } fs.mkdir(dir,mode,function(err)...
javascript
{ "resource": "" }
q3618
handleStatforPath
train
function handleStatforPath(p, mode, parent,next){ return function(exists){ if(!exists){ //console.log('no path ' + p + ' so recurse'); return makedir(parent, mode, makeme(p,mode,next)); }else{ // console.log('...
javascript
{ "resource": "" }
q3619
makedir
train
function makedir(p,mode,next){ if (typeof mode === 'function' || mode === undefined) { next = mode; mode = 0777 & (~process.umask()); } if (typeof mode === 'string') mode = parseInt(mode, 8); p = path.resolve(p); // recursively make sure that directory exists. // var parent ...
javascript
{ "resource": "" }
q3620
process
train
function process(segments, parent) { var last = segments.pop(); if (last) { parent[last] = parent[last] || {}; process(segments, parent[last]); } else { parent[true] = true; } }
javascript
{ "resource": "" }
q3621
isExtendOf
train
function isExtendOf(name, variable) { var offset = typeof variable === 'object' && variable ? Object.getPrototypeOf(variable) : null, pattern = offset ? new RegExp('^' + name + '$') : null; // It is not quite feasible to compare the inheritance using `instanceof` (all constructors would have to // be regist...
javascript
{ "resource": "" }
q3622
parameterize
train
function parameterize(candidate) { candidate.param = candidate.param.map(function(param) { var value; if ('value' in param) { value = param.value; } else if ('reference' in param) { value = candidate.param.reduce(function(p, c) { return c !== param && !p && param.reference === c.name && 'val...
javascript
{ "resource": "" }
q3623
matchSignature
train
function matchSignature(list, arg) { var types = arg.map(function(variable) { return new RegExp('^(' + type(variable) + ')'); }); return list.filter(function(config) { var variadic = false, result; // result is true if no more arguments are provided than the signature allows OR the last // a...
javascript
{ "resource": "" }
q3624
prepare
train
function prepare(list, arg) { return list.map(function(config) { var item = { // the function to call call: config.call, // all configured arguments arguments: config.arguments, // the calculated specificity specificity: config.arguments.map(function(argument, index) { var ...
javascript
{ "resource": "" }
q3625
prioritize
train
function prioritize(list, arg) { return list.sort(function(a, b) { var typing = function(item, index) { return +(item.type === type(arg[index], true)); }; // if the calculated specificity is not equal it has precedence if (a.specificity !== b.specificity) { // the shortest specificity OR ELSE...
javascript
{ "resource": "" }
q3626
isTypeAtIndex
train
function isTypeAtIndex(type, list, index) { return list.length > index && 'type' in list[index] ? list[index].type === type : false; }
javascript
{ "resource": "" }
q3627
delegate
train
function delegate(arg) { // create a list of possible candidates based on the given arguments var candidate = matchSignature(registry, arg); // prepare the configured signatures/arguments based on the arguments actually recieved candidate = prepare(candidate, arg); // prioritize the candidates candidat...
javascript
{ "resource": "" }
q3628
cast
train
function cast(type, variable) { var result = variable; switch (type) { case 'number': result = +result; break; case 'int': result = parseInt(result, 10); break; case 'float': result = parseFloat(result); break; case 'bool': case 'boolean': result = ['true', '1', 1].ind...
javascript
{ "resource": "" }
q3629
numberType
train
function numberType(type, variable, explicit) { // if the integer value is identical to the float value, it is an integer return (parseInt(variable, 10) === parseFloat(variable) ? 'int' : 'float') + (explicit ? '' : '|' + type); }
javascript
{ "resource": "" }
q3630
type
train
function type(variable, explicit) { var result = typeof variable; switch (result) { case 'number': result = numberType(result, variable, explicit); break; case 'object': result = objectType(result, variable, explicit); break; case 'boolean': result = booleanType(result, explicit); ...
javascript
{ "resource": "" }
q3631
prepareArgument
train
function prepareArgument(match, name) { var result = { type: match ? match[1] : false, name: match ? match[2] : name }; if (match) { if (match[4] === '@') { result.reference = match[5]; } else if (match[3] === '=') { result.value = cast(result.type, match[5]); } } return resul...
javascript
{ "resource": "" }
q3632
parse
train
function parse(signature) { var pattern = /^(?:void|([a-zA-Z]+!?|\.{3})(?:[:\s]+([a-zA-Z]+)(?:(=)(@)?(.*))?)?)?$/; return signature.split(/\s*,\s*/).map(function(argument, index, all) { var result = prepareArgument(argument.match(pattern), 'var' + (index + 1)); if (result.type === false) { throw new Err...
javascript
{ "resource": "" }
q3633
polymorph
train
function polymorph() { var arg = Array.prototype.slice.call(arguments), candidate = delegate(arg); if (!candidate) { throw new Error('polymorph: signature not found "' + arg.map(function(variable) { return type(variable); }).join(', ') + '"'); } return candidate.call.apply(this, candidate.param);...
javascript
{ "resource": "" }
q3634
getRouteFiles
train
function getRouteFiles (pathName) { var items = fs.readdirSync(pathName); var files = []; items.forEach(function(itemName) { var fullName = path.join(pathName, itemName); var fsStat = fs.statSync(fullName); // If directory, then scan for "routes.js" if (fsStat.isDirectory()...
javascript
{ "resource": "" }
q3635
applyRules
train
function applyRules(rules, model, user) { const rulePromises = _.map(rules, (rule) => rule.applyTo(model, user)); return Promise.all(rulePromises) //TODO validate rule results to handle optional vs. required auth... .catch(function catchAuthError(error) { return Promise.reject(error...
javascript
{ "resource": "" }
q3636
readSecure
train
function readSecure(user, options) { // jscs:disable // jshint -W040 const self = this; // jshint +W040 // jscs:enable const shield = self.constructor.shield; const action = 'read'; const rules = shield.getApplicableRules(action); return shield._fetch.call(self, options) .the...
javascript
{ "resource": "" }
q3637
readAllSecure
train
function readAllSecure(user, options) { // jscs:disable // jshint -W040 const self = this; // jshint +W040 // jscs:enable const shield = self.constructor.shield; const action = 'read'; const rules = shield.getApplicableRules(action); return shield._fetchAll.call(self, options) ...
javascript
{ "resource": "" }
q3638
deleteSecure
train
function deleteSecure(user, options) { // jscs:disable // jshint -W040 const self = this; // jshint +W040 // jscs:enable const Model = self.constructor; const shield = Model.shield; const action = 'delete'; const rules = shield.getApplicableRules(action); const primaryKey = Model...
javascript
{ "resource": "" }
q3639
updateSecure
train
function updateSecure(user, options) { // jscs:disable // jshint -W040 const self = this; // jshint +W040 // jscs:enable const Model = self.constructor; const shield = Model.shield; const action = 'update'; const rules = shield.getApplicableRules(action); const primaryKey = Model...
javascript
{ "resource": "" }
q3640
createSecure
train
function createSecure(user, options) { // jscs:disable // jshint -W040 const self = this; // jshint +W040 // jscs:enable let shield; let action; let rules; // validate that the model isNew if (!self.isNew()) { return Promise.reject( new AuthError('attempt to ...
javascript
{ "resource": "" }
q3641
bypass
train
function bypass(method, options) { // jscs:disable // jshint -W040 const self = this; // jshint +W040 // jscs:enable const shield = self.constructor.shield; if (!_.includes(shield.protectedMethods, method)) { return Promise.reject(new Error('no such protected method')); } co...
javascript
{ "resource": "" }
q3642
addError
train
function addError(data, error) { if (!data.error) { data.error = []; } error.lineNumber = data.lineNumber; data.error.push(error); }
javascript
{ "resource": "" }
q3643
createTmpHashAction
train
function createTmpHashAction(contentHashFields, multiRowFields) { let tmpHashFields = []; // where there fields from the contentHashFields in the multiRowFields? let fieldClash = false; // add the original content hash fields to an new array // but check that there are not in the multiRowFields. for (let i = 0;...
javascript
{ "resource": "" }
q3644
RenderManager
train
function RenderManager(view) { this.running = false; this._frame = 0; this.view = view; this.skipFrames = 0; this.skipFramesCounter = 0; this.onEnterFrame = new signals.Signal(); this.onExitFrame = new signals.Signal(); this.render = this.render.bind(this); this.renderLoop = this.renderLoop.bind(this); }
javascript
{ "resource": "" }
q3645
mergeMap
train
function mergeMap(instance, data) { // for each key in canReflect.eachKey(instance, function(value, prop) { if(!canReflect.hasKey(data, prop)) { canReflect.deleteKeyValue(instance, prop); return; } var newValue = canReflect.getKeyValue(data, prop); canReflect.deleteKeyValue(data, prop); // cases: ...
javascript
{ "resource": "" }
q3646
Command
train
function Command(handler, options, desc) { Command.super_.apply(this, [handler, options, desc]); }
javascript
{ "resource": "" }
q3647
loadJSON
train
function loadJSON (file, callback) { loadText(file, function (err, data) { if (err) { callback(err, null) } else { var json = null try { json = JSON.parse(data) } catch (e) { return callback(e, null) } callback(null, json) } }) }
javascript
{ "resource": "" }
q3648
train
function(req, res, next) { async.parallel({ applications: (fn) => { const spy = { stash: {} }; applications.get(req, spy, () => { if(spy.stash.code !== 200) { return fn(new Error('Error getting applications.')); ...
javascript
{ "resource": "" }
q3649
HTTPError
train
function HTTPError(statusCode, message) { if (!(this instanceof HTTPError)) { return new HTTPError(statusCode, message); } assert(statusCode >= 400, 'Not a valid HTTP error code'); this.statusCode = statusCode; this.code = statusCode; this.message = message || defaultMessage; }
javascript
{ "resource": "" }
q3650
map
train
function map(schema, valueSchema) { if (!objtools.isPlainObject(schema)) { valueSchema = schema; schema = {}; } schema.type = 'map'; schema.values = valueSchema; return schema; }
javascript
{ "resource": "" }
q3651
train
function() { this.jsonInit({ "message0": "%1", "args0": [ { "type": "field_dropdown", "name": "ON", "options": [ [Blockly.Msg.MOTION_IFON_EDGE, '_edge_'], [Blockly.Msg.MOTION_IFON_POINTER, '_mouse_'], ] } ], "col...
javascript
{ "resource": "" }
q3652
train
function (src, dst, config, headers, callback) { if (_.isFunction(headers)) { callback = headers; headers = undefined; } var options = config.options; if (!fsys.isFileSync(src)) { return callback(new Error('source file not found. path:', src)); ...
javascript
{ "resource": "" }
q3653
incrementalProp
train
function incrementalProp(state1, state2, propName, compare) { const values1 = state1[propName]; const values2 = state2[propName]; let result; // Note: Values may be undefined if no data was read. if (((values1 && values1.length !== 0) || state1.ended) && ((values2 && values2.length !== 0) || state2.en...
javascript
{ "resource": "" }
q3654
train
function (context) { context.setCookie = function (name, value, options) { var cookieStr = cookie.serialize(name, value, options); if (res) { var header = res.getHeader('Set-Cookie') || []; if (!Array.isArray(header)...
javascript
{ "resource": "" }
q3655
onList
train
function onList(newList) { var current = this.currentList || []; newList = newList || []; if (current[offPatchesSymbol]) { current[offPatchesSymbol](this.onPatchesNotify, "notify"); } var patches = diff(current, newList); this.currentList = newList; this.onPatchesNotify(patches); if (newList[onPatche...
javascript
{ "resource": "" }
q3656
onPatchesNotify
train
function onPatchesNotify(patches) { // we are going to collect all patches this.patches.push.apply(this.patches, patches); // TODO: share priority queues.deriveQueue.enqueue(this.onPatchesDerive, this, [], { priority: this.priority }); }
javascript
{ "resource": "" }
q3657
clean
train
function clean(object, follow = false) { // check if object is an object if (is(object) && !empty(object)) { // clone the object to use as the result and // so it is immutable let result = clone(object); // if follow is true flatten the object keys so // its easy to get the path to delete and s...
javascript
{ "resource": "" }
q3658
train
function(id) { var canvasContainer = document.createElement("div"); canvasContainer.id = id; canvasContainer.width = window.innerWidth; canvasContainer.height = window.innerHeight; this.addCanvasContainerToDOMBody(canvasContainer); this.setDOMMode(canvasContainer, this.domMode); return canvasContainer; }
javascript
{ "resource": "" }
q3659
train
function(element, mode) { var style = element.style; switch(mode) { case DOMMode.FULLSCREEN: style.position = "fixed"; style.left = "0px"; style.top = "0px"; style.width = '100%'; style.height = '100%'; break; case DOMMode.CONTAINER: style.position = "absolute"; style.left = "0...
javascript
{ "resource": "" }
q3660
del
train
function del(object, path) { // check if the object is an object and isn't empty if (is(object) && !empty(object)) { // clone the object let cloned = clone(object); // set the new value for the cloned object so we // can manipulate it const result = cloned; // get the path parts const ...
javascript
{ "resource": "" }
q3661
train
function(e, ui) { var dst = $(this), targets = $.grep(ui.helper.data('files')||[], function(h) { return h? true : false; }), result = [], dups = [], faults = [], isCopy = ui.helper.hasClass('elfinder-drag-helper-plus'), c = 'class', cnt, hash, i, h; if (typeof e.but...
javascript
{ "resource": "" }
q3662
train
function() { var full; if (node.hasClass(cls)) { return node.get(0); } else { full = node.find('.' + cls); if (full.length) { return full.get(0); } } return null; }
javascript
{ "resource": "" }
q3663
train
function(type, order, stickFolders, alsoTreeview) { this.storage('sortType', (this.sortType = this.sortRules[type] ? type : 'name')); this.storage('sortOrder', (this.sortOrder = /asc|desc/.test(order) ? order : 'asc')); this.storage('sortStickFolders', (this.sortStickFolders = !!stickFolders) ? 1 : ''); this.st...
javascript
{ "resource": "" }
q3664
train
function(a, b) { var self = elFinder.prototype.naturalCompare; if (typeof self.loc == 'undefined') { self.loc = (navigator.userLanguage || navigator.browserLanguage || navigator.language || 'en-US'); } if (typeof self.sort == 'undefined') { if ('11'.localeCompare('2', self.loc, {numeric: true}) > 0) { ...
javascript
{ "resource": "" }
q3665
train
function(file1, file2) { var self = this, type = self.sortType, asc = self.sortOrder == 'asc', stick = self.sortStickFolders, rules = self.sortRules, sort = rules[type], d1 = file1.mime == 'directory', d2 = file2.mime == 'directory', res; if (stick) { if (d1 && !d2) { r...
javascript
{ "resource": "" }
q3666
train
function(prefix, phash, glue) { var i = 0, ext = '', p, name; prefix = this.i18n(false, prefix); phash = phash || this.cwd().hash; glue = (typeof glue === 'undefined')? ' ' : glue; if (p = prefix.match(/^(.+)(\.[^.]+)$/)) { ext = p[2]; prefix = p[1]; } name = prefix+ext; if (!this.f...
javascript
{ "resource": "" }
q3667
train
function(file, asObject) { var self = this, template = { 'background' : 'url(\'{url}\') 0 0 no-repeat', 'background-size' : 'contain' }, style = '', cssObj = {}, i = 0; if (file.icon) { style = 'style="'; $.each(template, function(k, v) { if (i++ === 0) { v = v.replace('{url}',...
javascript
{ "resource": "" }
q3668
train
function(mimeType) { var prefix = 'elfinder-cwd-icon-', mime = mimeType.toLowerCase(), isText = this.textMimes[mime]; mime = mime.split('/'); if (isText) { mime[0] += ' ' + prefix + 'text'; } return prefix + mime[0] + (mime[1] ? ' ' + prefix + mime[1].replace(/(\.|\+)/g, '-') : ''); }
javascript
{ "resource": "" }
q3669
train
function(f) { var isObj = typeof(f) == 'object' ? true : false, mime = isObj ? f.mime : f, kind; if (isObj && f.alias && mime != 'symlink-broken') { kind = 'Alias'; } else if (this.kinds[mime]) { if (isObj && mime === 'directory' && (! f.phash || f.isroot)) { kind = 'Root'; } else { ki...
javascript
{ "resource": "" }
q3670
train
function(format, date) { var self = this, output, d, dw, m, y, h, g, i, s; if (! date) { date = new Date(); } h = date[self.getHours](); g = h > 12 ? h - 12 : h; i = date[self.getMinutes](); s = date[self.getSeconds](); d = date[self.getDate](); dw = date[self.getDay](); m = date[s...
javascript
{ "resource": "" }
q3671
train
function(file, t) { var self = this, ts = t || file.ts, i18 = self.i18, date, format, output, d, dw, m, y, h, g, i, s; if (self.options.clientFormatDate && ts > 0) { date = new Date(ts*1000); format = ts >= this.yesterday ? this.fancyFormat : this.dateFormat; output = self.date(f...
javascript
{ "resource": "" }
q3672
train
function(num) { var v = new Number(num); if (v) { if (v.toLocaleString) { return v.toLocaleString(); } else { return String(num).replace( /(\d)(?=(\d\d\d)+(?!\d))/g, '$1,'); } } return num; }
javascript
{ "resource": "" }
q3673
train
function(o) { var c = ''; if (!o.read && !o.write) { c = 'elfinder-na'; } else if (!o.read) { c = 'elfinder-wo'; } else if (!o.write) { c = 'elfinder-ro'; } if (o.type) { c += ' elfinder-' + this.escape(o.type); } return c; }
javascript
{ "resource": "" }
q3674
train
function(f) { var p = []; f.read && p.push(this.i18n('read')); f.write && p.push(this.i18n('write')); return p.length ? p.join(' '+this.i18n('and')+' ') : this.i18n('noaccess'); }
javascript
{ "resource": "" }
q3675
train
function(s) { var n = 1, u = 'b'; if (s == 'unknown') { return this.i18n('unknown'); } if (s > 1073741824) { n = 1073741824; u = 'GB'; } else if (s > 1048576) { n = 1048576; u = 'MB'; } else if (s > 1024) { n = 1024; u = 'KB'; } s = s/n; return (s > 0 ? n >= 1048576 ? s.toFi...
javascript
{ "resource": "" }
q3676
train
function(mime, target) { target = target || this.cwd().hash; var res = true, // default is allow mimeChecker = this.option('uploadMime', target), allow, deny, check = function(checker) { var ret = false; if (typeof checker === 'string' && checker.toLowerCase() === 'all') { ret = true; ...
javascript
{ "resource": "" }
q3677
train
function(tasks) { var l = tasks.length, chain = function(task, idx) { ++idx; if (tasks[idx]) { return chain(task.then(tasks[idx]), idx); } else { return task; } }; if (l > 1) { return chain(tasks[0](), 0); } else { return tasks[0](); } }
javascript
{ "resource": "" }
q3678
train
function(url) { var dfd = $.Deferred(), ifm; try { ifm = $('<iframe width="1" height="1" scrolling="no" frameborder="no" style="position:absolute; top:-1px; left:-1px" crossorigin="use-credentials">') .attr('src', url) .one('load', function() { var ifm = $(this); try { this.contentDocu...
javascript
{ "resource": "" }
q3679
train
function(files, opts) { var self = this, cwd = this.getUI('cwd'), cwdHash = this.cwd().hash, newItem = $(); opts = opts || {}; $.each(files, function(i, f) { if (f.phash === cwdHash || self.searchStatus.state > 1) { newItem = newItem.add(cwd.find('#'+self.cwdHash2Id(f.hash))); if ...
javascript
{ "resource": "" }
q3680
train
function(url) { if (url.match(/^http/i)) { return url; } if (url.substr(0,2) === '//') { return window.location.protocol + url; } var root = window.location.protocol + '//' + window.location.host, reg = /[^\/]+\/\.\.\//, ret; if (url.substr(0, 1) === '/') { ret = root + url; } else { re...
javascript
{ "resource": "" }
q3681
train
function (checkUrl) { var url; checkUrl = this.convAbsUrl(checkUrl); if (location.origin && window.URL) { try { url = new URL(checkUrl); return location.origin === url.origin; } catch(e) {} } url = document.createElement('a'); url.href = checkUrl; return location.protocol === url.protocol &&...
javascript
{ "resource": "" }
q3682
train
function() { var self = this, node = this.getUI(), ni = node.css('z-index'); if (ni && ni !== 'auto' && ni !== 'inherit') { self.zIndex = ni; } else { node.parents().each(function(i, n) { var z = $(n).css('z-index'); if (z !== 'auto' && z !== 'inherit' && (z = parseInt(z))) { self.zIndex ...
javascript
{ "resource": "" }
q3683
train
function(urls) { var self = this; if (typeof urls === 'string') { urls = [ urls ]; } $.each(urls, function(i, url) { url = self.convAbsUrl(url).replace(/^https?:/i, ''); if (! $("head > link[href='+url+']").length) { $('head').append('<link rel="stylesheet" type="text/css" href="' + url + '" />'); ...
javascript
{ "resource": "" }
q3684
train
function(func, arr, opts) { var dfrd = $.Deferred(), abortFlg = false, parms = Object.assign({ interval : 0, numPerOnce : 1 }, opts || {}), resArr = [], vars =[], curVars = [], exec, tm; dfrd._abort = function(resolve) { tm && clearTimeout(tm); vars = []; abortFlg = true;...
javascript
{ "resource": "" }
q3685
train
function(dir, update) { var self = this, prev = update? dir : (self.file(dir.hash) || dir), prevTs = prev.ts, change = false; // backup original stats if (update || !dir._realStats) { dir._realStats = { locked: dir.locked || 0, dirs: dir.dirs || 0, ts: dir.ts }; } // set lock dir....
javascript
{ "resource": "" }
q3686
train
function(xhr, o) { var opts = o || {}; if (xhr) { opts.quiet && (xhr.quiet = true); if (opts.abort && xhr._requestId) { this.request({ data: { cmd: 'abort', id: xhr._requestId }, preventDefault: true }); } xhr.abort(); xhr = void 0; } }
javascript
{ "resource": "" }
q3687
train
function (trans, val) { var key, tmpArr = {}, isArr = $.isArray(trans); for (key in trans) { if (isArr || trans.hasOwnProperty(key)) { tmpArr[trans[key]] = val || key; } } return tmpArr; }
javascript
{ "resource": "" }
q3688
train
function(arrayBuffer, sliceSize) { var segments= [], fi = 0; while(fi * sliceSize < arrayBuffer.byteLength){ segments.push(arrayBuffer.slice(fi * sliceSize, (fi + 1) * sliceSize)); fi++; } return segments; }
javascript
{ "resource": "" }
q3689
train
function(e, ui) { var dst = $(this), helper = ui.helper, cl = hover+' '+dropover, hash, status; e.stopPropagation(); helper.data('dropover', helper.data('dropover') + 1); dst.data('dropover', true); if (ui.helper.data('namespace') !== fm.namespace || ! insideNavbar(e.cl...
javascript
{ "resource": "" }
q3690
train
function(e, d) { selectTm && cancelAnimationFrame(selectTm); if (! e.data || ! e.data.selected || ! e.data.selected.length) { selectTm = requestAnimationFrame(function() { self.opened() && updateOnSel(); }); } else { self.opened() && updateOnSel(); } }
javascript
{ "resource": "" }
q3691
train
function(ql) { var fm = ql.fm, mimes = fm.arrayFlip(['text/html', 'application/xhtml+xml']), preview = ql.preview; preview.on(ql.evUpdate, function(e) { var file = e.file, jqxhr, loading; if (mimes[file.mime] && ql.dispInlineRegex.test(file.mime) && (!ql.options.getSizeMax || file.size ...
javascript
{ "resource": "" }
q3692
train
function(ql) { var fm = ql.fm, mimes = fm.arrayFlip(['text/x-markdown']), preview = ql.preview, marked = null, show = function(data, loading) { ql.hideinfo(); var doc = $('<iframe class="elfinder-quicklook-preview-html"/>').appendTo(preview)[0].contentWindow.document; doc.open(); ...
javascript
{ "resource": "" }
q3693
train
function(ql) { var fm = ql.fm, mime = 'application/pdf', preview = ql.preview, active = false; if ((fm.UA.Safari && fm.OS === 'mac' && !fm.UA.iOS) || fm.UA.IE) { active = true; } else { $.each(navigator.plugins, function(i, plugins) { $.each(plugins, function(i, plugin) { if...
javascript
{ "resource": "" }
q3694
train
function(ql) { var fm = ql.fm, mime = 'application/x-shockwave-flash', preview = ql.preview, active = false; $.each(navigator.plugins, function(i, plugins) { $.each(plugins, function(i, plugin) { if (plugin.type === mime) { return !(active = true); } }); }); active && ...
javascript
{ "resource": "" }
q3695
train
function(element) { var pnode = element; var x = pnode.offsetLeft; var y = pnode.offsetTop; while ( pnode.offsetParent ) { pnode = pnode.offsetParent; if (pnode != document.body && pnode.currentStyle['position'] != 'static') { break; } if (pnode != document.body && pnode != document...
javascript
{ "resource": "" }
q3696
catchClientError
train
function catchClientError(req, res, next) { const { end } = res; res.end = function() { // console.log(`Catch client response : ${req.url} ${res.statusCode}`); const errorRoute = Route .routes('err') .filter((obj) => { return obj.extra.status === res.statusCode && obj.route !== req.url;...
javascript
{ "resource": "" }
q3697
loadQuote
train
async function loadQuote(store, quoteId) { const quote = await fetchQuote(quoteId) await store.update(state => { if (!state.quotes) { state.quotes = {} } state.quotes[quoteId] = quote }) return { quoteId } }
javascript
{ "resource": "" }
q3698
nextQuote
train
async function nextQuote(store) { await store.update(state => { state.quoteId = state.quoteId + 1 if (state.quoteId >= MAX_QUOTE_ID) { state.quoteId = 1 } }) }
javascript
{ "resource": "" }
q3699
prevQuote
train
async function prevQuote(store) { await store.update(state => { state.quoteId = state.quoteId - 1 if (state.quoteId <= 0) { state.quoteId = MAX_QUOTE_ID } }) }
javascript
{ "resource": "" }