repo stringlengths 5 67 | path stringlengths 4 116 | func_name stringlengths 0 58 | original_string stringlengths 52 373k | language stringclasses 1
value | code stringlengths 52 373k | code_tokens list | docstring stringlengths 4 11.8k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 86 226 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
bitovi/documentjs | lib/stmd.js | function(tag, attribs, contents, selfclosing) {
var result = '<' + tag;
if (attribs) {
var i = 0;
var attrib;
while ((attrib = attribs[i]) !== undefined) {
result = result.concat(' ', attrib[0], '="', attrib[1], '"');
i++;
}
}
if (contents) {
result = result.concat('>', contents,... | javascript | function(tag, attribs, contents, selfclosing) {
var result = '<' + tag;
if (attribs) {
var i = 0;
var attrib;
while ((attrib = attribs[i]) !== undefined) {
result = result.concat(' ', attrib[0], '="', attrib[1], '"');
i++;
}
}
if (contents) {
result = result.concat('>', contents,... | [
"function",
"(",
"tag",
",",
"attribs",
",",
"contents",
",",
"selfclosing",
")",
"{",
"var",
"result",
"=",
"'<'",
"+",
"tag",
";",
"if",
"(",
"attribs",
")",
"{",
"var",
"i",
"=",
"0",
";",
"var",
"attrib",
";",
"while",
"(",
"(",
"attrib",
"="... | HTML RENDERER Helper function to produce content in a pair of HTML tags. | [
"HTML",
"RENDERER",
"Helper",
"function",
"to",
"produce",
"content",
"in",
"a",
"pair",
"of",
"HTML",
"tags",
"."
] | 5f6af5b213b840a0bfca1e146f1678db853f3b60 | https://github.com/bitovi/documentjs/blob/5f6af5b213b840a0bfca1e146f1678db853f3b60/lib/stmd.js#L1380-L1398 | train | |
bitovi/documentjs | lib/stmd.js | function(inline) {
var attrs;
switch (inline.t) {
case 'Str':
return this.escape(inline.c);
case 'Softbreak':
return this.softbreak;
case 'Hardbreak':
return inTags('br',[],"",true) + '\n';
case 'Emph':
return inTags('em', [], this.renderInlines(inline.c));
case 'Strong':... | javascript | function(inline) {
var attrs;
switch (inline.t) {
case 'Str':
return this.escape(inline.c);
case 'Softbreak':
return this.softbreak;
case 'Hardbreak':
return inTags('br',[],"",true) + '\n';
case 'Emph':
return inTags('em', [], this.renderInlines(inline.c));
case 'Strong':... | [
"function",
"(",
"inline",
")",
"{",
"var",
"attrs",
";",
"switch",
"(",
"inline",
".",
"t",
")",
"{",
"case",
"'Str'",
":",
"return",
"this",
".",
"escape",
"(",
"inline",
".",
"c",
")",
";",
"case",
"'Softbreak'",
":",
"return",
"this",
".",
"sof... | Render an inline element as HTML. | [
"Render",
"an",
"inline",
"element",
"as",
"HTML",
"."
] | 5f6af5b213b840a0bfca1e146f1678db853f3b60 | https://github.com/bitovi/documentjs/blob/5f6af5b213b840a0bfca1e146f1678db853f3b60/lib/stmd.js#L1401-L1437 | train | |
bitovi/documentjs | lib/stmd.js | function(inlines) {
var result = '';
for (var i=0; i < inlines.length; i++) {
result = result + this.renderInline(inlines[i]);
}
return result;
} | javascript | function(inlines) {
var result = '';
for (var i=0; i < inlines.length; i++) {
result = result + this.renderInline(inlines[i]);
}
return result;
} | [
"function",
"(",
"inlines",
")",
"{",
"var",
"result",
"=",
"''",
";",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"inlines",
".",
"length",
";",
"i",
"++",
")",
"{",
"result",
"=",
"result",
"+",
"this",
".",
"renderInline",
"(",
"inlines",... | Render a list of inlines. | [
"Render",
"a",
"list",
"of",
"inlines",
"."
] | 5f6af5b213b840a0bfca1e146f1678db853f3b60 | https://github.com/bitovi/documentjs/blob/5f6af5b213b840a0bfca1e146f1678db853f3b60/lib/stmd.js#L1440-L1446 | train | |
bitovi/documentjs | lib/stmd.js | function(block, in_tight_list) {
var tag;
var attr;
var info_words;
switch (block.t) {
case 'Document':
var whole_doc = this.renderBlocks(block.children);
return (whole_doc === '' ? '' : whole_doc + '\n');
case 'Paragraph':
if (in_tight_list) {
return this.renderInlines(block.i... | javascript | function(block, in_tight_list) {
var tag;
var attr;
var info_words;
switch (block.t) {
case 'Document':
var whole_doc = this.renderBlocks(block.children);
return (whole_doc === '' ? '' : whole_doc + '\n');
case 'Paragraph':
if (in_tight_list) {
return this.renderInlines(block.i... | [
"function",
"(",
"block",
",",
"in_tight_list",
")",
"{",
"var",
"tag",
";",
"var",
"attr",
";",
"var",
"info_words",
";",
"switch",
"(",
"block",
".",
"t",
")",
"{",
"case",
"'Document'",
":",
"var",
"whole_doc",
"=",
"this",
".",
"renderBlocks",
"(",... | Render a single block element. | [
"Render",
"a",
"single",
"block",
"element",
"."
] | 5f6af5b213b840a0bfca1e146f1678db853f3b60 | https://github.com/bitovi/documentjs/blob/5f6af5b213b840a0bfca1e146f1678db853f3b60/lib/stmd.js#L1449-L1501 | train | |
bitovi/documentjs | lib/stmd.js | function(blocks, in_tight_list) {
var result = [];
for (var i=0; i < blocks.length; i++) {
if (blocks[i].t !== 'ReferenceDef') {
result.push(this.renderBlock(blocks[i], in_tight_list));
}
}
return result.join(this.blocksep);
} | javascript | function(blocks, in_tight_list) {
var result = [];
for (var i=0; i < blocks.length; i++) {
if (blocks[i].t !== 'ReferenceDef') {
result.push(this.renderBlock(blocks[i], in_tight_list));
}
}
return result.join(this.blocksep);
} | [
"function",
"(",
"blocks",
",",
"in_tight_list",
")",
"{",
"var",
"result",
"=",
"[",
"]",
";",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"blocks",
".",
"length",
";",
"i",
"++",
")",
"{",
"if",
"(",
"blocks",
"[",
"i",
"]",
".",
"t",
... | Render a list of block elements, separated by this.blocksep. | [
"Render",
"a",
"list",
"of",
"block",
"elements",
"separated",
"by",
"this",
".",
"blocksep",
"."
] | 5f6af5b213b840a0bfca1e146f1678db853f3b60 | https://github.com/bitovi/documentjs/blob/5f6af5b213b840a0bfca1e146f1678db853f3b60/lib/stmd.js#L1504-L1512 | train | |
bitovi/documentjs | lib/stmd.js | HtmlRenderer | function HtmlRenderer(){
return {
// default options:
blocksep: '\n', // space between blocks
innersep: '\n', // space between block container tag and contents
softbreak: '\n', // by default, soft breaks are rendered as newlines in HTML
// set to "<br />" to make them hard break... | javascript | function HtmlRenderer(){
return {
// default options:
blocksep: '\n', // space between blocks
innersep: '\n', // space between block container tag and contents
softbreak: '\n', // by default, soft breaks are rendered as newlines in HTML
// set to "<br />" to make them hard break... | [
"function",
"HtmlRenderer",
"(",
")",
"{",
"return",
"{",
"// default options:",
"blocksep",
":",
"'\\n'",
",",
"// space between blocks",
"innersep",
":",
"'\\n'",
",",
"// space between block container tag and contents",
"softbreak",
":",
"'\\n'",
",",
"// by default, s... | The HtmlRenderer object. | [
"The",
"HtmlRenderer",
"object",
"."
] | 5f6af5b213b840a0bfca1e146f1678db853f3b60 | https://github.com/bitovi/documentjs/blob/5f6af5b213b840a0bfca1e146f1678db853f3b60/lib/stmd.js#L1515-L1542 | train |
bitovi/documentjs | lib/process/file.js | typeCreateHandler | function typeCreateHandler(docObject, newScope) {
docObject && addDocObjectToDocMap(docObject, docMap, filename, comment && comment.line);
if (newScope) {
scope = newScope;
}
} | javascript | function typeCreateHandler(docObject, newScope) {
docObject && addDocObjectToDocMap(docObject, docMap, filename, comment && comment.line);
if (newScope) {
scope = newScope;
}
} | [
"function",
"typeCreateHandler",
"(",
"docObject",
",",
"newScope",
")",
"{",
"docObject",
"&&",
"addDocObjectToDocMap",
"(",
"docObject",
",",
"docMap",
",",
"filename",
",",
"comment",
"&&",
"comment",
".",
"line",
")",
";",
"if",
"(",
"newScope",
")",
"{"... | A callback that gets called with the docObject created and the scope | [
"A",
"callback",
"that",
"gets",
"called",
"with",
"the",
"docObject",
"created",
"and",
"the",
"scope"
] | 5f6af5b213b840a0bfca1e146f1678db853f3b60 | https://github.com/bitovi/documentjs/blob/5f6af5b213b840a0bfca1e146f1678db853f3b60/lib/process/file.js#L64-L70 | train |
bitovi/documentjs | lib/process/file.js | makeDocObject | function makeDocObject(base, line, codeLine){
var docObject = _.extend({}, base);
if(filename) {
docObject.src = filename + "";
}
if (typeof line === 'number') {
docObject.line = line;
}
if (typeof codeLine === 'number') {
docObject.codeLine = codeLine;
}
return docObject;
} | javascript | function makeDocObject(base, line, codeLine){
var docObject = _.extend({}, base);
if(filename) {
docObject.src = filename + "";
}
if (typeof line === 'number') {
docObject.line = line;
}
if (typeof codeLine === 'number') {
docObject.codeLine = codeLine;
}
return docObject;
} | [
"function",
"makeDocObject",
"(",
"base",
",",
"line",
",",
"codeLine",
")",
"{",
"var",
"docObject",
"=",
"_",
".",
"extend",
"(",
"{",
"}",
",",
"base",
")",
";",
"if",
"(",
"filename",
")",
"{",
"docObject",
".",
"src",
"=",
"filename",
"+",
"\"... | makes a docObject with a src and line | [
"makes",
"a",
"docObject",
"with",
"a",
"src",
"and",
"line"
] | 5f6af5b213b840a0bfca1e146f1678db853f3b60 | https://github.com/bitovi/documentjs/blob/5f6af5b213b840a0bfca1e146f1678db853f3b60/lib/process/file.js#L72-L84 | train |
bitovi/documentjs | lib/process/comment.js | function(indentationStack, indentation, docObject, keepStack ){
if(!keepStack) {
while(indentationStack.length && _.last(indentationStack).indentation >= indentation) {
var top = indentationStack.pop();
if(top.tag && top.tag.end) {
top.tag.end.call(docObject, top.tagData);
}
}
}
return indentationSt... | javascript | function(indentationStack, indentation, docObject, keepStack ){
if(!keepStack) {
while(indentationStack.length && _.last(indentationStack).indentation >= indentation) {
var top = indentationStack.pop();
if(top.tag && top.tag.end) {
top.tag.end.call(docObject, top.tagData);
}
}
}
return indentationSt... | [
"function",
"(",
"indentationStack",
",",
"indentation",
",",
"docObject",
",",
"keepStack",
")",
"{",
"if",
"(",
"!",
"keepStack",
")",
"{",
"while",
"(",
"indentationStack",
".",
"length",
"&&",
"_",
".",
"last",
"(",
"indentationStack",
")",
".",
"inden... | pop off the stack until indentation matches | [
"pop",
"off",
"the",
"stack",
"until",
"indentation",
"matches"
] | 5f6af5b213b840a0bfca1e146f1678db853f3b60 | https://github.com/bitovi/documentjs/blob/5f6af5b213b840a0bfca1e146f1678db853f3b60/lib/process/comment.js#L144-L154 | train | |
bitovi/documentjs | lib/generators/html/build/make_default_helpers.js | function(name, title, attrs){
if (!name) return (title || "");
name = name.replace('::', '.prototype.');
if (docMap[name]) {
var attrsArr = [];
for(var prop in attrs){
attrsArr.push(prop+"=\""+attrs[prop]+"\"")
}
return '<a href="' + docsFilename(name, config) + '" '+attrsArr.join(" ")+'>'... | javascript | function(name, title, attrs){
if (!name) return (title || "");
name = name.replace('::', '.prototype.');
if (docMap[name]) {
var attrsArr = [];
for(var prop in attrs){
attrsArr.push(prop+"=\""+attrs[prop]+"\"")
}
return '<a href="' + docsFilename(name, config) + '" '+attrsArr.join(" ")+'>'... | [
"function",
"(",
"name",
",",
"title",
",",
"attrs",
")",
"{",
"if",
"(",
"!",
"name",
")",
"return",
"(",
"title",
"||",
"\"\"",
")",
";",
"name",
"=",
"name",
".",
"replace",
"(",
"'::'",
",",
"'.prototype.'",
")",
";",
"if",
"(",
"docMap",
"["... | helper that creates a link to a docObject | [
"helper",
"that",
"creates",
"a",
"link",
"to",
"a",
"docObject"
] | 5f6af5b213b840a0bfca1e146f1678db853f3b60 | https://github.com/bitovi/documentjs/blob/5f6af5b213b840a0bfca1e146f1678db853f3b60/lib/generators/html/build/make_default_helpers.js#L392-L404 | train | |
bitovi/documentjs | lib/generators/html/build/make_default_helpers.js | function(types, options){
if(!Array.isArray(types)) {
return options.inverse(this);
}
var typesWithDescriptions = [];
types.forEach(function( type ){
if(type.description){
typesWithDescriptions.push(type)
}
});
if( !typesWithDescriptions.length ) {
// check the 1st one's optio... | javascript | function(types, options){
if(!Array.isArray(types)) {
return options.inverse(this);
}
var typesWithDescriptions = [];
types.forEach(function( type ){
if(type.description){
typesWithDescriptions.push(type)
}
});
if( !typesWithDescriptions.length ) {
// check the 1st one's optio... | [
"function",
"(",
"types",
",",
"options",
")",
"{",
"if",
"(",
"!",
"Array",
".",
"isArray",
"(",
"types",
")",
")",
"{",
"return",
"options",
".",
"inverse",
"(",
"this",
")",
";",
"}",
"var",
"typesWithDescriptions",
"=",
"[",
"]",
";",
"types",
... | Getting and transforming data and making it available to the template
@function documentjs.generators.html.defaultHelpers.getTypesWithDescriptions | [
"Getting",
"and",
"transforming",
"data",
"and",
"making",
"it",
"available",
"to",
"the",
"template"
] | 5f6af5b213b840a0bfca1e146f1678db853f3b60 | https://github.com/bitovi/documentjs/blob/5f6af5b213b840a0bfca1e146f1678db853f3b60/lib/generators/html/build/make_default_helpers.js#L502-L528 | train | |
AndersDJohnson/magnificent.js | src/js/mag-control.js | function (element, options) {
this.element = $(element)
this.options = $.extend(true, {}, this.options, options)
this._init()
} | javascript | function (element, options) {
this.element = $(element)
this.options = $.extend(true, {}, this.options, options)
this._init()
} | [
"function",
"(",
"element",
",",
"options",
")",
"{",
"this",
".",
"element",
"=",
"$",
"(",
"element",
")",
"this",
".",
"options",
"=",
"$",
".",
"extend",
"(",
"true",
",",
"{",
"}",
",",
"this",
".",
"options",
",",
"options",
")",
"this",
".... | eslint-disable-line semi | [
"eslint",
"-",
"disable",
"-",
"line",
"semi"
] | c2277fe0e154588b35ef2fdadb4e0af01fe68d15 | https://github.com/AndersDJohnson/magnificent.js/blob/c2277fe0e154588b35ef2fdadb4e0af01fe68d15/src/js/mag-control.js#L17-L21 | train | |
mapbox/mock-aws-sdk-js | index.js | stubMethod | function stubMethod(service, method, replacement) {
if (!isStubbed(service)) stubService(service);
if (!replacement) return sinon.stub(getService(service).prototype, method);
return sinon.stub(getService(service).prototype, method).callsFake(function(params, callback) {
var _this = { request: stubRequest(), ... | javascript | function stubMethod(service, method, replacement) {
if (!isStubbed(service)) stubService(service);
if (!replacement) return sinon.stub(getService(service).prototype, method);
return sinon.stub(getService(service).prototype, method).callsFake(function(params, callback) {
var _this = { request: stubRequest(), ... | [
"function",
"stubMethod",
"(",
"service",
",",
"method",
",",
"replacement",
")",
"{",
"if",
"(",
"!",
"isStubbed",
"(",
"service",
")",
")",
"stubService",
"(",
"service",
")",
";",
"if",
"(",
"!",
"replacement",
")",
"return",
"sinon",
".",
"stub",
"... | Replaces a single AWS service method with a stub.
@param {string} service - the name of the AWS service. Can include `.` for
nested services, e.g. `'DynamoDB.DocumentClient'`.
@param {string} method - the name of the service method to stub.
@param {function} [replacement] - if specified, this function will be called
w... | [
"Replaces",
"a",
"single",
"AWS",
"service",
"method",
"with",
"a",
"stub",
"."
] | a0e80985cd842b3ade1e68e7136ebaf6aa1f3475 | https://github.com/mapbox/mock-aws-sdk-js/blob/a0e80985cd842b3ade1e68e7136ebaf6aa1f3475/index.js#L21-L30 | train |
gulpjs/gulp-util | lib/PluginError.js | function(plugin, message, opt) {
opt = opt || {};
if (typeof plugin === 'object') {
opt = plugin;
} else {
if (message instanceof Error) {
opt.error = message;
} else if (typeof message === 'object') {
opt = message;
} else {
opt.message = message;
}
opt.plugin = plugin;
... | javascript | function(plugin, message, opt) {
opt = opt || {};
if (typeof plugin === 'object') {
opt = plugin;
} else {
if (message instanceof Error) {
opt.error = message;
} else if (typeof message === 'object') {
opt = message;
} else {
opt.message = message;
}
opt.plugin = plugin;
... | [
"function",
"(",
"plugin",
",",
"message",
",",
"opt",
")",
"{",
"opt",
"=",
"opt",
"||",
"{",
"}",
";",
"if",
"(",
"typeof",
"plugin",
"===",
"'object'",
")",
"{",
"opt",
"=",
"plugin",
";",
"}",
"else",
"{",
"if",
"(",
"message",
"instanceof",
... | wow what a clusterfuck | [
"wow",
"what",
"a",
"clusterfuck"
] | 2035ebdbc29f700189356a1da717703411d87b7a | https://github.com/gulpjs/gulp-util/blob/2035ebdbc29f700189356a1da717703411d87b7a/lib/PluginError.js#L11-L30 | train | |
benjamn/private | private.js | makeSafeToCall | function makeSafeToCall(fun) {
if (fun) {
defProp(fun, "call", fun.call);
defProp(fun, "apply", fun.apply);
}
return fun;
} | javascript | function makeSafeToCall(fun) {
if (fun) {
defProp(fun, "call", fun.call);
defProp(fun, "apply", fun.apply);
}
return fun;
} | [
"function",
"makeSafeToCall",
"(",
"fun",
")",
"{",
"if",
"(",
"fun",
")",
"{",
"defProp",
"(",
"fun",
",",
"\"call\"",
",",
"fun",
".",
"call",
")",
";",
"defProp",
"(",
"fun",
",",
"\"apply\"",
",",
"fun",
".",
"apply",
")",
";",
"}",
"return",
... | For functions that will be invoked using .call or .apply, we need to define those methods on the function objects themselves, rather than inheriting them from Function.prototype, so that a malicious or clumsy third party cannot interfere with the functionality of this module by redefining Function.prototype.call or .ap... | [
"For",
"functions",
"that",
"will",
"be",
"invoked",
"using",
".",
"call",
"or",
".",
"apply",
"we",
"need",
"to",
"define",
"those",
"methods",
"on",
"the",
"function",
"objects",
"themselves",
"rather",
"than",
"inheriting",
"them",
"from",
"Function",
"."... | 288cadd93e61b330d4afa10b61e4cb7868709de9 | https://github.com/benjamn/private/blob/288cadd93e61b330d4afa10b61e4cb7868709de9/private.js#L22-L28 | train |
benjamn/private | private.js | vault | function vault(key, forget) {
// Only code that has access to the passkey can retrieve (or forget)
// the secret object.
if (key === passkey) {
return forget
? secret = null
: secret || (secret = secretCreatorFn(object));
}
} | javascript | function vault(key, forget) {
// Only code that has access to the passkey can retrieve (or forget)
// the secret object.
if (key === passkey) {
return forget
? secret = null
: secret || (secret = secretCreatorFn(object));
}
} | [
"function",
"vault",
"(",
"key",
",",
"forget",
")",
"{",
"// Only code that has access to the passkey can retrieve (or forget)",
"// the secret object.",
"if",
"(",
"key",
"===",
"passkey",
")",
"{",
"return",
"forget",
"?",
"secret",
"=",
"null",
":",
"secret",
"|... | Created lazily. | [
"Created",
"lazily",
"."
] | 288cadd93e61b330d4afa10b61e4cb7868709de9 | https://github.com/benjamn/private/blob/288cadd93e61b330d4afa10b61e4cb7868709de9/private.js#L102-L110 | train |
s-yadav/jsonQ | jsonQ.js | newFormat | function newFormat(option) {
//parameter change
var keyAdded = option.keyAdded || [],
json = option.json,
path = option.path,
newJson = option.newJson;
//add to new json
jsonQ.each(json, function(k, val) {
var lvlpath = path ? JSON.parse(J... | javascript | function newFormat(option) {
//parameter change
var keyAdded = option.keyAdded || [],
json = option.json,
path = option.path,
newJson = option.newJson;
//add to new json
jsonQ.each(json, function(k, val) {
var lvlpath = path ? JSON.parse(J... | [
"function",
"newFormat",
"(",
"option",
")",
"{",
"//parameter change",
"var",
"keyAdded",
"=",
"option",
".",
"keyAdded",
"||",
"[",
"]",
",",
"json",
"=",
"option",
".",
"json",
",",
"path",
"=",
"option",
".",
"path",
",",
"newJson",
"=",
"option",
... | function to create new format | [
"function",
"to",
"create",
"new",
"format"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L56-L94 | train |
s-yadav/jsonQ | jsonQ.js | function(option) {
var current = this.jsonQ_current,
newObj = this.cloneObj(jsonQ()),
newCurrent = newObj.jsonQ_current = [],
prevPathStr = '',
key = option.key,
method = option.method;
for (var i = 0, ln = current.... | javascript | function(option) {
var current = this.jsonQ_current,
newObj = this.cloneObj(jsonQ()),
newCurrent = newObj.jsonQ_current = [],
prevPathStr = '',
key = option.key,
method = option.method;
for (var i = 0, ln = current.... | [
"function",
"(",
"option",
")",
"{",
"var",
"current",
"=",
"this",
".",
"jsonQ_current",
",",
"newObj",
"=",
"this",
".",
"cloneObj",
"(",
"jsonQ",
"(",
")",
")",
",",
"newCurrent",
"=",
"newObj",
".",
"jsonQ_current",
"=",
"[",
"]",
",",
"prevPathStr... | search on top level | [
"search",
"on",
"top",
"level"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L99-L149 | train | |
s-yadav/jsonQ | jsonQ.js | function(option) {
var current = this.jsonQ_current,
newObj = this.cloneObj(jsonQ()),
newCurrent = newObj.jsonQ_current = [],
pathObj = this.jsonQ_path,
//key element (an array of paths with following key)
key = option.key,
... | javascript | function(option) {
var current = this.jsonQ_current,
newObj = this.cloneObj(jsonQ()),
newCurrent = newObj.jsonQ_current = [],
pathObj = this.jsonQ_path,
//key element (an array of paths with following key)
key = option.key,
... | [
"function",
"(",
"option",
")",
"{",
"var",
"current",
"=",
"this",
".",
"jsonQ_current",
",",
"newObj",
"=",
"this",
".",
"cloneObj",
"(",
"jsonQ",
"(",
")",
")",
",",
"newCurrent",
"=",
"newObj",
".",
"jsonQ_current",
"=",
"[",
"]",
",",
"pathObj",
... | traverse which have qualifiers mainly on bottom and sibling method | [
"traverse",
"which",
"have",
"qualifiers",
"mainly",
"on",
"bottom",
"and",
"sibling",
"method"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L151-L235 | train | |
s-yadav/jsonQ | jsonQ.js | function(index, valObj, clone) {
var current = this.jsonQ_current;
//return if incorrect index is given
if (isNaN(index) && index != "first" && index != "last") {
error(index + 'is not a valid index.');
return this;
}
for (var ... | javascript | function(index, valObj, clone) {
var current = this.jsonQ_current;
//return if incorrect index is given
if (isNaN(index) && index != "first" && index != "last") {
error(index + 'is not a valid index.');
return this;
}
for (var ... | [
"function",
"(",
"index",
",",
"valObj",
",",
"clone",
")",
"{",
"var",
"current",
"=",
"this",
".",
"jsonQ_current",
";",
"//return if incorrect index is given",
"if",
"(",
"isNaN",
"(",
"index",
")",
"&&",
"index",
"!=",
"\"first\"",
"&&",
"index",
"!=",
... | to append at specific index of values of current | [
"to",
"append",
"at",
"specific",
"index",
"of",
"values",
"of",
"current"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L393-L430 | train | |
s-yadav/jsonQ | jsonQ.js | function(key, qualifier) {
return tFunc.qualTrv.call(this, {
method: "find",
key: key,
qualifier: qualifier
});
} | javascript | function(key, qualifier) {
return tFunc.qualTrv.call(this, {
method: "find",
key: key,
qualifier: qualifier
});
} | [
"function",
"(",
"key",
",",
"qualifier",
")",
"{",
"return",
"tFunc",
".",
"qualTrv",
".",
"call",
"(",
"this",
",",
"{",
"method",
":",
"\"find\"",
",",
"key",
":",
"key",
",",
"qualifier",
":",
"qualifier",
"}",
")",
";",
"}"
] | first argument is key in which you want to search, second key is qualifier of it. | [
"first",
"argument",
"is",
"key",
"in",
"which",
"you",
"want",
"to",
"search",
"second",
"key",
"is",
"qualifier",
"of",
"it",
"."
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L473-L479 | train | |
s-yadav/jsonQ | jsonQ.js | function(key, settings) {
//merge global setting with local setting
settings = jsonQ.merge({}, jsonQ.settings.sort, settings);
var jobj = this.find(key),
current = jobj.clone(),
sortStack = [],
i, ln,
sortedPath = [],
... | javascript | function(key, settings) {
//merge global setting with local setting
settings = jsonQ.merge({}, jsonQ.settings.sort, settings);
var jobj = this.find(key),
current = jobj.clone(),
sortStack = [],
i, ln,
sortedPath = [],
... | [
"function",
"(",
"key",
",",
"settings",
")",
"{",
"//merge global setting with local setting",
"settings",
"=",
"jsonQ",
".",
"merge",
"(",
"{",
"}",
",",
"jsonQ",
".",
"settings",
".",
"sort",
",",
"settings",
")",
";",
"var",
"jobj",
"=",
"this",
".",
... | function to sort array objects | [
"function",
"to",
"sort",
"array",
"objects"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L521-L610 | train | |
s-yadav/jsonQ | jsonQ.js | function(a) {
var val = jsonQ.pathValue(a, logicPath);
//to convert val to be compared
val = sortFunc.baseConv(type, val, settings);
return settings.logic(val);
} | javascript | function(a) {
var val = jsonQ.pathValue(a, logicPath);
//to convert val to be compared
val = sortFunc.baseConv(type, val, settings);
return settings.logic(val);
} | [
"function",
"(",
"a",
")",
"{",
"var",
"val",
"=",
"jsonQ",
".",
"pathValue",
"(",
"a",
",",
"logicPath",
")",
";",
"//to convert val to be compared",
"val",
"=",
"sortFunc",
".",
"baseConv",
"(",
"type",
",",
"val",
",",
"settings",
")",
";",
"return",
... | logic path is path which we add in on condition to find the element value according to which we are sorting | [
"logic",
"path",
"is",
"path",
"which",
"we",
"add",
"in",
"on",
"condition",
"to",
"find",
"the",
"element",
"value",
"according",
"to",
"which",
"we",
"are",
"sorting"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L581-L587 | train | |
s-yadav/jsonQ | jsonQ.js | function(callback) {
var current = this.jsonQ_current;
for (var i = 0, ln = current.length; i < ln; i++) {
callback(i, current[i].path, this.pathValue(current[i].path));
}
return this;
} | javascript | function(callback) {
var current = this.jsonQ_current;
for (var i = 0, ln = current.length; i < ln; i++) {
callback(i, current[i].path, this.pathValue(current[i].path));
}
return this;
} | [
"function",
"(",
"callback",
")",
"{",
"var",
"current",
"=",
"this",
".",
"jsonQ_current",
";",
"for",
"(",
"var",
"i",
"=",
"0",
",",
"ln",
"=",
"current",
".",
"length",
";",
"i",
"<",
"ln",
";",
"i",
"++",
")",
"{",
"callback",
"(",
"i",
",... | to make loop on current | [
"to",
"make",
"loop",
"on",
"current"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L612-L618 | train | |
s-yadav/jsonQ | jsonQ.js | function(k, v) {
var type = objType(v),
tarType = objType(target[k]);
if (deep && (type == "array" || type == "object")) {
target[k] = type == tarType && (tarType == "array" || tarType == "object") ? target[k] : type == "array" ? [] : {};
//to me... | javascript | function(k, v) {
var type = objType(v),
tarType = objType(target[k]);
if (deep && (type == "array" || type == "object")) {
target[k] = type == tarType && (tarType == "array" || tarType == "object") ? target[k] : type == "array" ? [] : {};
//to me... | [
"function",
"(",
"k",
",",
"v",
")",
"{",
"var",
"type",
"=",
"objType",
"(",
"v",
")",
",",
"tarType",
"=",
"objType",
"(",
"target",
"[",
"k",
"]",
")",
";",
"if",
"(",
"deep",
"&&",
"(",
"type",
"==",
"\"array\"",
"||",
"type",
"==",
"\"obje... | callback function to recursiveliy merge | [
"callback",
"function",
"to",
"recursiveliy",
"merge"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L697-L709 | train | |
s-yadav/jsonQ | jsonQ.js | function(list, elm, isQualifier) {
var type = objType(elm),
ln = list.length,
//check that elm is a object or not that is taken by reference
refObj = type == "object" || type == "array" || type == "function" ? true : false;
//if elm is a function... | javascript | function(list, elm, isQualifier) {
var type = objType(elm),
ln = list.length,
//check that elm is a object or not that is taken by reference
refObj = type == "object" || type == "array" || type == "function" ? true : false;
//if elm is a function... | [
"function",
"(",
"list",
",",
"elm",
",",
"isQualifier",
")",
"{",
"var",
"type",
"=",
"objType",
"(",
"elm",
")",
",",
"ln",
"=",
"list",
".",
"length",
",",
"//check that elm is a object or not that is taken by reference",
"refObj",
"=",
"type",
"==",
"\"obj... | to find index of an element in set of element | [
"to",
"find",
"index",
"of",
"an",
"element",
"in",
"set",
"of",
"element"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L791-L848 | train | |
s-yadav/jsonQ | jsonQ.js | function(json, keyVal) {
for (var k in keyVal) {
if (keyVal.hasOwnProperty(k))
if (!jsonQ.identical(keyVal[k], json[k])) return false;
}
return true;
} | javascript | function(json, keyVal) {
for (var k in keyVal) {
if (keyVal.hasOwnProperty(k))
if (!jsonQ.identical(keyVal[k], json[k])) return false;
}
return true;
} | [
"function",
"(",
"json",
",",
"keyVal",
")",
"{",
"for",
"(",
"var",
"k",
"in",
"keyVal",
")",
"{",
"if",
"(",
"keyVal",
".",
"hasOwnProperty",
"(",
"k",
")",
")",
"if",
"(",
"!",
"jsonQ",
".",
"identical",
"(",
"keyVal",
"[",
"k",
"]",
",",
"j... | function to check an json object contains a set of key value pair or not | [
"function",
"to",
"check",
"an",
"json",
"object",
"contains",
"a",
"set",
"of",
"key",
"value",
"pair",
"or",
"not"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L854-L860 | train | |
s-yadav/jsonQ | jsonQ.js | function(a, b) {
function sort(object) {
if (typeof object !== "object" || object === null) {
return object;
}
return Object.keys(object).sort().map(function(key) {
return {
key: key,
... | javascript | function(a, b) {
function sort(object) {
if (typeof object !== "object" || object === null) {
return object;
}
return Object.keys(object).sort().map(function(key) {
return {
key: key,
... | [
"function",
"(",
"a",
",",
"b",
")",
"{",
"function",
"sort",
"(",
"object",
")",
"{",
"if",
"(",
"typeof",
"object",
"!==",
"\"object\"",
"||",
"object",
"===",
"null",
")",
"{",
"return",
"object",
";",
"}",
"return",
"Object",
".",
"keys",
"(",
... | need to modify it little bit By Chris O'Brien, prettycode.org | [
"need",
"to",
"modify",
"it",
"little",
"bit",
"By",
"Chris",
"O",
"Brien",
"prettycode",
".",
"org"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L924-L940 | train | |
s-yadav/jsonQ | jsonQ.js | function() {
var arg = arguments,
target = [],
ln = arg.length;
for (var i = 0; i < ln; i++) {
var aryLn = arg[i].length;
for (var j = 0; j < aryLn; j++) {
var itm = arg[i][j];
if (jsonQ.inde... | javascript | function() {
var arg = arguments,
target = [],
ln = arg.length;
for (var i = 0; i < ln; i++) {
var aryLn = arg[i].length;
for (var j = 0; j < aryLn; j++) {
var itm = arg[i][j];
if (jsonQ.inde... | [
"function",
"(",
")",
"{",
"var",
"arg",
"=",
"arguments",
",",
"target",
"=",
"[",
"]",
",",
"ln",
"=",
"arg",
".",
"length",
";",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"ln",
";",
"i",
"++",
")",
"{",
"var",
"aryLn",
"=",
"arg",... | Return the union of arrays in new array | [
"Return",
"the",
"union",
"of",
"arrays",
"in",
"new",
"array"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L942-L958 | train | |
s-yadav/jsonQ | jsonQ.js | function() {
var arg = arguments,
target = [],
flag,
ln = arg.length;
if (ln == 1) {
target = arg[0];
} else {
for (var j = 0, aryLn = arg[0].length; j < aryLn; j++) {
var elm = arg[0... | javascript | function() {
var arg = arguments,
target = [],
flag,
ln = arg.length;
if (ln == 1) {
target = arg[0];
} else {
for (var j = 0, aryLn = arg[0].length; j < aryLn; j++) {
var elm = arg[0... | [
"function",
"(",
")",
"{",
"var",
"arg",
"=",
"arguments",
",",
"target",
"=",
"[",
"]",
",",
"flag",
",",
"ln",
"=",
"arg",
".",
"length",
";",
"if",
"(",
"ln",
"==",
"1",
")",
"{",
"target",
"=",
"arg",
"[",
"0",
"]",
";",
"}",
"else",
"{... | return intersection of array in new array | [
"return",
"intersection",
"of",
"array",
"in",
"new",
"array"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L960-L985 | train | |
s-yadav/jsonQ | jsonQ.js | function(array) {
for (var i = 1, ln = array.length; i < ln; i++) {
var j = Math.floor(Math.random() * (i + 1)),
tmp = array[i];
array[i] = array[j];
array[j] = tmp;
}
return array;
} | javascript | function(array) {
for (var i = 1, ln = array.length; i < ln; i++) {
var j = Math.floor(Math.random() * (i + 1)),
tmp = array[i];
array[i] = array[j];
array[j] = tmp;
}
return array;
} | [
"function",
"(",
"array",
")",
"{",
"for",
"(",
"var",
"i",
"=",
"1",
",",
"ln",
"=",
"array",
".",
"length",
";",
"i",
"<",
"ln",
";",
"i",
"++",
")",
"{",
"var",
"j",
"=",
"Math",
".",
"floor",
"(",
"Math",
".",
"random",
"(",
")",
"*",
... | shuffle the order of elements in a array. returns the same array. | [
"shuffle",
"the",
"order",
"of",
"elements",
"in",
"a",
"array",
".",
"returns",
"the",
"same",
"array",
"."
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L987-L996 | train | |
s-yadav/jsonQ | jsonQ.js | function(json, path) {
var i = 0,
ln = path.length;
if (json === null) {
return null;
}
while (i < ln) {
if (json[path[i]] === null) {
json = null;
return;
} else {
... | javascript | function(json, path) {
var i = 0,
ln = path.length;
if (json === null) {
return null;
}
while (i < ln) {
if (json[path[i]] === null) {
json = null;
return;
} else {
... | [
"function",
"(",
"json",
",",
"path",
")",
"{",
"var",
"i",
"=",
"0",
",",
"ln",
"=",
"path",
".",
"length",
";",
"if",
"(",
"json",
"===",
"null",
")",
"{",
"return",
"null",
";",
"}",
"while",
"(",
"i",
"<",
"ln",
")",
"{",
"if",
"(",
"js... | to get value at specific path in a json | [
"to",
"get",
"value",
"at",
"specific",
"path",
"in",
"a",
"json"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L1013-L1031 | train | |
s-yadav/jsonQ | jsonQ.js | function(target, index, val, clone) {
if (isNaN(index) && index != "first" && index != "last") {
error(index + 'is not a valid index.');
return;
}
var type = objType(target),
length = target.length;
//to limit index
... | javascript | function(target, index, val, clone) {
if (isNaN(index) && index != "first" && index != "last") {
error(index + 'is not a valid index.');
return;
}
var type = objType(target),
length = target.length;
//to limit index
... | [
"function",
"(",
"target",
",",
"index",
",",
"val",
",",
"clone",
")",
"{",
"if",
"(",
"isNaN",
"(",
"index",
")",
"&&",
"index",
"!=",
"\"first\"",
"&&",
"index",
"!=",
"\"last\"",
")",
"{",
"error",
"(",
"index",
"+",
"'is not a valid index.'",
")",... | to append at specific index of values of array or string | [
"to",
"append",
"at",
"specific",
"index",
"of",
"values",
"of",
"array",
"or",
"string"
] | 845399736d2627c7a60cd4519f56e56553ae6f4f | https://github.com/s-yadav/jsonQ/blob/845399736d2627c7a60cd4519f56e56553ae6f4f/jsonQ.js#L1096-L1124 | train | |
daurnimator/lua.vm.js | src/lua.js | getmain | function getmain(L) {
L.rawgeti(Lua.defines.REGISTRYINDEX, Lua.defines.RIDX_MAINTHREAD);
var _L = L.tothread(-1);
L.pop(1);
return _L;
} | javascript | function getmain(L) {
L.rawgeti(Lua.defines.REGISTRYINDEX, Lua.defines.RIDX_MAINTHREAD);
var _L = L.tothread(-1);
L.pop(1);
return _L;
} | [
"function",
"getmain",
"(",
"L",
")",
"{",
"L",
".",
"rawgeti",
"(",
"Lua",
".",
"defines",
".",
"REGISTRYINDEX",
",",
"Lua",
".",
"defines",
".",
"RIDX_MAINTHREAD",
")",
";",
"var",
"_L",
"=",
"L",
".",
"tothread",
"(",
"-",
"1",
")",
";",
"L",
... | Get main lua_State of given thread | [
"Get",
"main",
"lua_State",
"of",
"given",
"thread"
] | 4e3fd0341205b6bdecf74de80ea94e5d5e53013a | https://github.com/daurnimator/lua.vm.js/blob/4e3fd0341205b6bdecf74de80ea94e5d5e53013a/src/lua.js#L517-L522 | train |
vbauer/manet | example/client.js | screenshotServiceUrl | function screenshotServiceUrl(siteUrl) {
return url.format({
protocol: 'http',
hostname: DEF_MANET_HOST,
port: DEF_MANET_PORT,
query: {
callback: DEF_CALLBACK,
url: siteUrl,
force: true
}
});
} | javascript | function screenshotServiceUrl(siteUrl) {
return url.format({
protocol: 'http',
hostname: DEF_MANET_HOST,
port: DEF_MANET_PORT,
query: {
callback: DEF_CALLBACK,
url: siteUrl,
force: true
}
});
} | [
"function",
"screenshotServiceUrl",
"(",
"siteUrl",
")",
"{",
"return",
"url",
".",
"format",
"(",
"{",
"protocol",
":",
"'http'",
",",
"hostname",
":",
"DEF_MANET_HOST",
",",
"port",
":",
"DEF_MANET_PORT",
",",
"query",
":",
"{",
"callback",
":",
"DEF_CALLB... | Generate full URL to the screenshot service. | [
"Generate",
"full",
"URL",
"to",
"the",
"screenshot",
"service",
"."
] | 83cb65f1f0bce75988cda74d38d588e1101893d3 | https://github.com/vbauer/manet/blob/83cb65f1f0bce75988cda74d38d588e1101893d3/example/client.js#L29-L40 | train |
vbauer/manet | example/client.js | captureScreenshot | function captureScreenshot(url) {
const serviceUrl = screenshotServiceUrl(url);
console.log('Sending request to capture screenshot from %s', url);
http.get(serviceUrl, (res) =>
console.log('Screenshot from %s was captured with status %s', url, res.statusCode));
console.log('Request to capture s... | javascript | function captureScreenshot(url) {
const serviceUrl = screenshotServiceUrl(url);
console.log('Sending request to capture screenshot from %s', url);
http.get(serviceUrl, (res) =>
console.log('Screenshot from %s was captured with status %s', url, res.statusCode));
console.log('Request to capture s... | [
"function",
"captureScreenshot",
"(",
"url",
")",
"{",
"const",
"serviceUrl",
"=",
"screenshotServiceUrl",
"(",
"url",
")",
";",
"console",
".",
"log",
"(",
"'Sending request to capture screenshot from %s'",
",",
"url",
")",
";",
"http",
".",
"get",
"(",
"servic... | Call the Manet using the current server as a callback. | [
"Call",
"the",
"Manet",
"using",
"the",
"current",
"server",
"as",
"a",
"callback",
"."
] | 83cb65f1f0bce75988cda74d38d588e1101893d3 | https://github.com/vbauer/manet/blob/83cb65f1f0bce75988cda74d38d588e1101893d3/example/client.js#L45-L52 | train |
vbauer/manet | example/client.js | startPoller | function startPoller() {
setInterval(() => {
for (let i = 0; i < DEF_SITES_URL.length; i++) {
captureScreenshot(DEF_SITES_URL[i]);
}
}, DEF_DELAY);
} | javascript | function startPoller() {
setInterval(() => {
for (let i = 0; i < DEF_SITES_URL.length; i++) {
captureScreenshot(DEF_SITES_URL[i]);
}
}, DEF_DELAY);
} | [
"function",
"startPoller",
"(",
")",
"{",
"setInterval",
"(",
"(",
")",
"=>",
"{",
"for",
"(",
"let",
"i",
"=",
"0",
";",
"i",
"<",
"DEF_SITES_URL",
".",
"length",
";",
"i",
"++",
")",
"{",
"captureScreenshot",
"(",
"DEF_SITES_URL",
"[",
"i",
"]",
... | Start HTTP requests poller. | [
"Start",
"HTTP",
"requests",
"poller",
"."
] | 83cb65f1f0bce75988cda74d38d588e1101893d3 | https://github.com/vbauer/manet/blob/83cb65f1f0bce75988cda74d38d588e1101893d3/example/client.js#L57-L63 | train |
vbauer/manet | example/client.js | startServer | function startServer() {
http.createServer((req, res) => {
const fileName = __dirname + path.sep + new Date().getTime() + '.png';
req.on('end', () => {
res.writeHead(200);
res.end();
fs.stat(fileName, function(error, stat) {
console.log(
... | javascript | function startServer() {
http.createServer((req, res) => {
const fileName = __dirname + path.sep + new Date().getTime() + '.png';
req.on('end', () => {
res.writeHead(200);
res.end();
fs.stat(fileName, function(error, stat) {
console.log(
... | [
"function",
"startServer",
"(",
")",
"{",
"http",
".",
"createServer",
"(",
"(",
"req",
",",
"res",
")",
"=>",
"{",
"const",
"fileName",
"=",
"__dirname",
"+",
"path",
".",
"sep",
"+",
"new",
"Date",
"(",
")",
".",
"getTime",
"(",
")",
"+",
"'.png'... | Start client HTTP server. | [
"Start",
"client",
"HTTP",
"server",
"."
] | 83cb65f1f0bce75988cda74d38d588e1101893d3 | https://github.com/vbauer/manet/blob/83cb65f1f0bce75988cda74d38d588e1101893d3/example/client.js#L68-L89 | train |
caolan/jam | lib/utils.js | getURL | function getURL( repository ) {
var repourl;
if (typeof repository === 'object') {
repourl = repository.url;
} else {
repourl = repository
};
return repourl;
} | javascript | function getURL( repository ) {
var repourl;
if (typeof repository === 'object') {
repourl = repository.url;
} else {
repourl = repository
};
return repourl;
} | [
"function",
"getURL",
"(",
"repository",
")",
"{",
"var",
"repourl",
";",
"if",
"(",
"typeof",
"repository",
"===",
"'object'",
")",
"{",
"repourl",
"=",
"repository",
".",
"url",
";",
"}",
"else",
"{",
"repourl",
"=",
"repository",
"}",
";",
"return",
... | Returns a URL according to the type of a repository
@private
@commit 4fd38b97f4763d288f9f948acbf1122f33bf6951 | [
"Returns",
"a",
"URL",
"according",
"to",
"the",
"type",
"of",
"a",
"repository"
] | befa3f276dcb9ce593bc0d913e0313c50835f16c | https://github.com/caolan/jam/blob/befa3f276dcb9ce593bc0d913e0313c50835f16c/lib/utils.js#L394-L404 | train |
caolan/jam | lib/logger.js | function (levels, fn) {
return function (label, val) {
for (var i = 0; i < levels.length; i++) {
if (levels[i] === exports.level) {
return fn(label, val);
}
}
};
} | javascript | function (levels, fn) {
return function (label, val) {
for (var i = 0; i < levels.length; i++) {
if (levels[i] === exports.level) {
return fn(label, val);
}
}
};
} | [
"function",
"(",
"levels",
",",
"fn",
")",
"{",
"return",
"function",
"(",
"label",
",",
"val",
")",
"{",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"levels",
".",
"length",
";",
"i",
"++",
")",
"{",
"if",
"(",
"levels",
"[",
"i",
"]",
... | Executes a function only if the current log level is in the levels list
@param {Array} levels
@param {Function} fn | [
"Executes",
"a",
"function",
"only",
"if",
"the",
"current",
"log",
"level",
"is",
"in",
"the",
"levels",
"list"
] | befa3f276dcb9ce593bc0d913e0313c50835f16c | https://github.com/caolan/jam/blob/befa3f276dcb9ce593bc0d913e0313c50835f16c/lib/logger.js#L40-L48 | train | |
kminami/apib2swagger | index.js | swaggerSecurity | function swaggerSecurity(context, headers) {
var security = null;
headers.filter(function(header) {
return header.name.toLowerCase() === 'authorization';
}).forEach(function(header) {
if (header.value.match(/^Basic /)) {
if (!security) security = {};
security['basic']... | javascript | function swaggerSecurity(context, headers) {
var security = null;
headers.filter(function(header) {
return header.name.toLowerCase() === 'authorization';
}).forEach(function(header) {
if (header.value.match(/^Basic /)) {
if (!security) security = {};
security['basic']... | [
"function",
"swaggerSecurity",
"(",
"context",
",",
"headers",
")",
"{",
"var",
"security",
"=",
"null",
";",
"headers",
".",
"filter",
"(",
"function",
"(",
"header",
")",
"{",
"return",
"header",
".",
"name",
".",
"toLowerCase",
"(",
")",
"===",
"'auth... | generate security and securityDefinitions from authorization headers | [
"generate",
"security",
"and",
"securityDefinitions",
"from",
"authorization",
"headers"
] | 24eeec1662b4c6c933f81572fce012aefcc96cf0 | https://github.com/kminami/apib2swagger/blob/24eeec1662b4c6c933f81572fce012aefcc96cf0/index.js#L221-L246 | train |
wix/eslint-plugin-lodash | src/util/methodDataUtil.js | expandAliases | function expandAliases(version, methods) {
return _.flatMap(methods, method => expandAlias(version, method))
} | javascript | function expandAliases(version, methods) {
return _.flatMap(methods, method => expandAlias(version, method))
} | [
"function",
"expandAliases",
"(",
"version",
",",
"methods",
")",
"{",
"return",
"_",
".",
"flatMap",
"(",
"methods",
",",
"method",
"=>",
"expandAlias",
"(",
"version",
",",
"method",
")",
")",
"}"
] | Gets a major version number and a list of methods and returns a list of methods and all their aliases
@param version
@param methods
@returns {string[]} | [
"Gets",
"a",
"major",
"version",
"number",
"and",
"a",
"list",
"of",
"methods",
"and",
"returns",
"a",
"list",
"of",
"methods",
"and",
"all",
"their",
"aliases"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/methodDataUtil.js#L24-L26 | train |
wix/eslint-plugin-lodash | src/util/methodDataUtil.js | isChainable | function isChainable(version, method) {
const data = getMethodData(version)
return _.get(data, [getMainAlias(version, method), 'chainable'], false)
} | javascript | function isChainable(version, method) {
const data = getMethodData(version)
return _.get(data, [getMainAlias(version, method), 'chainable'], false)
} | [
"function",
"isChainable",
"(",
"version",
",",
"method",
")",
"{",
"const",
"data",
"=",
"getMethodData",
"(",
"version",
")",
"return",
"_",
".",
"get",
"(",
"data",
",",
"[",
"getMainAlias",
"(",
"version",
",",
"method",
")",
",",
"'chainable'",
"]",... | Gets a list of all chainable methods and their aliases for a given version
@param {Number} version
@param {string} method
@returns {boolean} | [
"Gets",
"a",
"list",
"of",
"all",
"chainable",
"methods",
"and",
"their",
"aliases",
"for",
"a",
"given",
"version"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/methodDataUtil.js#L44-L47 | train |
wix/eslint-plugin-lodash | src/util/methodDataUtil.js | isCollectionMethod | function isCollectionMethod(version, method) {
return methodSupportsShorthand(version, method) || _.includes(expandAliases(version, ['reduce', 'reduceRight']), method)
} | javascript | function isCollectionMethod(version, method) {
return methodSupportsShorthand(version, method) || _.includes(expandAliases(version, ['reduce', 'reduceRight']), method)
} | [
"function",
"isCollectionMethod",
"(",
"version",
",",
"method",
")",
"{",
"return",
"methodSupportsShorthand",
"(",
"version",
",",
"method",
")",
"||",
"_",
".",
"includes",
"(",
"expandAliases",
"(",
"version",
",",
"[",
"'reduce'",
",",
"'reduceRight'",
"]... | Gets whether the method is a collection method
@param {Number} version
@param {string} method
@returns {Boolean} | [
"Gets",
"whether",
"the",
"method",
"is",
"a",
"collection",
"method"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/methodDataUtil.js#L55-L57 | train |
wix/eslint-plugin-lodash | src/util/methodDataUtil.js | methodSupportsShorthand | function methodSupportsShorthand(version, method, shorthandType) {
const mainAlias = getMainAlias(version, method)
const methodShorthandData = _.get(getMethodData(version), [mainAlias, 'shorthand'])
return _.isObject(methodShorthandData) ? Boolean(shorthandType && methodShorthandData[shorthandType]) : Boole... | javascript | function methodSupportsShorthand(version, method, shorthandType) {
const mainAlias = getMainAlias(version, method)
const methodShorthandData = _.get(getMethodData(version), [mainAlias, 'shorthand'])
return _.isObject(methodShorthandData) ? Boolean(shorthandType && methodShorthandData[shorthandType]) : Boole... | [
"function",
"methodSupportsShorthand",
"(",
"version",
",",
"method",
",",
"shorthandType",
")",
"{",
"const",
"mainAlias",
"=",
"getMainAlias",
"(",
"version",
",",
"method",
")",
"const",
"methodShorthandData",
"=",
"_",
".",
"get",
"(",
"getMethodData",
"(",
... | Returns whether the node's method call supports using shorthands in the specified version
@param {Number} version
@param {string} method
@returns {boolean} | [
"Returns",
"whether",
"the",
"node",
"s",
"method",
"call",
"supports",
"using",
"shorthands",
"in",
"the",
"specified",
"version"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/methodDataUtil.js#L66-L70 | train |
wix/eslint-plugin-lodash | src/util/methodDataUtil.js | isAliasOfMethod | function isAliasOfMethod(version, method, suspect) {
return method === suspect || _.includes(_.get(getMethodData(version), [method, 'aliases']), suspect)
} | javascript | function isAliasOfMethod(version, method, suspect) {
return method === suspect || _.includes(_.get(getMethodData(version), [method, 'aliases']), suspect)
} | [
"function",
"isAliasOfMethod",
"(",
"version",
",",
"method",
",",
"suspect",
")",
"{",
"return",
"method",
"===",
"suspect",
"||",
"_",
".",
"includes",
"(",
"_",
".",
"get",
"(",
"getMethodData",
"(",
"version",
")",
",",
"[",
"method",
",",
"'aliases'... | Gets whether the suspect is an alias of the method in a given version
@param {Number} version
@param {string} method
@param {string} suspect
@returns {boolean} | [
"Gets",
"whether",
"the",
"suspect",
"is",
"an",
"alias",
"of",
"the",
"method",
"in",
"a",
"given",
"version"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/methodDataUtil.js#L88-L90 | train |
wix/eslint-plugin-lodash | src/util/methodDataUtil.js | getMainAlias | function getMainAlias(version, method) {
const data = getMethodData(version)
return data[method] ? method : _.findKey(data, methodData => _.includes(methodData.aliases, method))
} | javascript | function getMainAlias(version, method) {
const data = getMethodData(version)
return data[method] ? method : _.findKey(data, methodData => _.includes(methodData.aliases, method))
} | [
"function",
"getMainAlias",
"(",
"version",
",",
"method",
")",
"{",
"const",
"data",
"=",
"getMethodData",
"(",
"version",
")",
"return",
"data",
"[",
"method",
"]",
"?",
"method",
":",
"_",
".",
"findKey",
"(",
"data",
",",
"methodData",
"=>",
"_",
"... | Returns the main alias for the method in the specified version.
@param {number} version
@param {string} method
@returns {string} | [
"Returns",
"the",
"main",
"alias",
"for",
"the",
"method",
"in",
"the",
"specified",
"version",
"."
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/methodDataUtil.js#L98-L101 | train |
wix/eslint-plugin-lodash | src/util/methodDataUtil.js | getIterateeIndex | function getIterateeIndex(version, method) {
const mainAlias = getMainAlias(version, method)
const methodData = getMethodData(version)[mainAlias]
if (_.has(methodData, 'iterateeIndex')) {
return methodData.iterateeIndex
}
if (methodData && methodData.iteratee) {
return 1
}
re... | javascript | function getIterateeIndex(version, method) {
const mainAlias = getMainAlias(version, method)
const methodData = getMethodData(version)[mainAlias]
if (_.has(methodData, 'iterateeIndex')) {
return methodData.iterateeIndex
}
if (methodData && methodData.iteratee) {
return 1
}
re... | [
"function",
"getIterateeIndex",
"(",
"version",
",",
"method",
")",
"{",
"const",
"mainAlias",
"=",
"getMainAlias",
"(",
"version",
",",
"method",
")",
"const",
"methodData",
"=",
"getMethodData",
"(",
"version",
")",
"[",
"mainAlias",
"]",
"if",
"(",
"_",
... | Gets the index of the iteratee of a method when it isn't chained, or -1 if it doesn't have one.
@param {number} version
@param {string} method
@returns {number} | [
"Gets",
"the",
"index",
"of",
"the",
"iteratee",
"of",
"a",
"method",
"when",
"it",
"isn",
"t",
"chained",
"or",
"-",
"1",
"if",
"it",
"doesn",
"t",
"have",
"one",
"."
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/methodDataUtil.js#L109-L119 | train |
wix/eslint-plugin-lodash | src/util/astUtil.js | isMemberExpOf | function isMemberExpOf(node, objectName, {maxLength = Number.MAX_VALUE, allowComputed} = {}) {
if (objectName) {
let curr = node
let depth = maxLength
while (curr && depth) {
if (allowComputed || isPropAccess(curr)) {
if (curr.type === 'MemberExpression' && curr.o... | javascript | function isMemberExpOf(node, objectName, {maxLength = Number.MAX_VALUE, allowComputed} = {}) {
if (objectName) {
let curr = node
let depth = maxLength
while (curr && depth) {
if (allowComputed || isPropAccess(curr)) {
if (curr.type === 'MemberExpression' && curr.o... | [
"function",
"isMemberExpOf",
"(",
"node",
",",
"objectName",
",",
"{",
"maxLength",
"=",
"Number",
".",
"MAX_VALUE",
",",
"allowComputed",
"}",
"=",
"{",
"}",
")",
"{",
"if",
"(",
"objectName",
")",
"{",
"let",
"curr",
"=",
"node",
"let",
"depth",
"=",... | Returns whether the node is a member expression starting with the same object, up to the specified length
@param {Object} node
@param {string} objectName
@param {Object} [options]
@param {number} [options.maxLength]
@param {boolean} [options.allowComputed]
@returns {boolean|undefined} | [
"Returns",
"whether",
"the",
"node",
"is",
"a",
"member",
"expression",
"starting",
"with",
"the",
"same",
"object",
"up",
"to",
"the",
"specified",
"length"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/astUtil.js#L65-L81 | train |
wix/eslint-plugin-lodash | src/util/astUtil.js | hasOnlyOneStatement | function hasOnlyOneStatement(func) {
if (isFunctionDefinitionWithBlock(func)) {
return _.get(func, 'body.body.length') === 1
}
if (func.type === 'ArrowFunctionExpression') {
return !_.get(func, 'body.body')
}
} | javascript | function hasOnlyOneStatement(func) {
if (isFunctionDefinitionWithBlock(func)) {
return _.get(func, 'body.body.length') === 1
}
if (func.type === 'ArrowFunctionExpression') {
return !_.get(func, 'body.body')
}
} | [
"function",
"hasOnlyOneStatement",
"(",
"func",
")",
"{",
"if",
"(",
"isFunctionDefinitionWithBlock",
"(",
"func",
")",
")",
"{",
"return",
"_",
".",
"get",
"(",
"func",
",",
"'body.body.length'",
")",
"===",
"1",
"}",
"if",
"(",
"func",
".",
"type",
"==... | Returns whether the node specified has only one statement
@param {Object} func
@returns {boolean} | [
"Returns",
"whether",
"the",
"node",
"specified",
"has",
"only",
"one",
"statement"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/astUtil.js#L102-L109 | train |
wix/eslint-plugin-lodash | src/util/astUtil.js | isBinaryExpWithMemberOf | function isBinaryExpWithMemberOf(operator, exp, objectName, {maxLength, allowComputed, onlyLiterals} = {}) {
if (!_.isMatch(exp, {type: 'BinaryExpression', operator})) {
return false
}
const [left, right] = [exp.left, exp.right].map(side => isMemberExpOf(side, objectName, {maxLength, allowComputed})... | javascript | function isBinaryExpWithMemberOf(operator, exp, objectName, {maxLength, allowComputed, onlyLiterals} = {}) {
if (!_.isMatch(exp, {type: 'BinaryExpression', operator})) {
return false
}
const [left, right] = [exp.left, exp.right].map(side => isMemberExpOf(side, objectName, {maxLength, allowComputed})... | [
"function",
"isBinaryExpWithMemberOf",
"(",
"operator",
",",
"exp",
",",
"objectName",
",",
"{",
"maxLength",
",",
"allowComputed",
",",
"onlyLiterals",
"}",
"=",
"{",
"}",
")",
"{",
"if",
"(",
"!",
"_",
".",
"isMatch",
"(",
"exp",
",",
"{",
"type",
":... | Returns whether the expression specified is a binary expression with the specified operator and one of its sides is a member expression of the specified object name
@param {string} operator
@param {Object} exp
@param {string} objectName
@param {number} maxLength
@param {boolean} allowComputed
@param {boolean} onlyLiter... | [
"Returns",
"whether",
"the",
"expression",
"specified",
"is",
"a",
"binary",
"expression",
"with",
"the",
"specified",
"operator",
"and",
"one",
"of",
"its",
"sides",
"is",
"a",
"member",
"expression",
"of",
"the",
"specified",
"object",
"name"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/astUtil.js#L139-L145 | train |
wix/eslint-plugin-lodash | src/util/astUtil.js | isNegationOfMemberOf | function isNegationOfMemberOf(exp, objectName, {maxLength} = {}) {
return isNegationExpression(exp) && isMemberExpOf(exp.argument, objectName, {maxLength, allowComputed: false})
} | javascript | function isNegationOfMemberOf(exp, objectName, {maxLength} = {}) {
return isNegationExpression(exp) && isMemberExpOf(exp.argument, objectName, {maxLength, allowComputed: false})
} | [
"function",
"isNegationOfMemberOf",
"(",
"exp",
",",
"objectName",
",",
"{",
"maxLength",
"}",
"=",
"{",
"}",
")",
"{",
"return",
"isNegationExpression",
"(",
"exp",
")",
"&&",
"isMemberExpOf",
"(",
"exp",
".",
"argument",
",",
"objectName",
",",
"{",
"max... | Returns whether the expression is a negation of a member of objectName, in the specified depth.
@param {Object} exp
@param {string} objectName
@param {number} maxLength
@returns {boolean|undefined} | [
"Returns",
"whether",
"the",
"expression",
"is",
"a",
"negation",
"of",
"a",
"member",
"of",
"objectName",
"in",
"the",
"specified",
"depth",
"."
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/astUtil.js#L162-L164 | train |
wix/eslint-plugin-lodash | src/util/astUtil.js | getValueReturnedInFirstStatement | function getValueReturnedInFirstStatement(func) {
const firstLine = getFirstFunctionLine(func)
if (func) {
if (isFunctionDefinitionWithBlock(func)) {
return isReturnStatement(firstLine) ? firstLine.argument : undefined
}
if (func.type === 'ArrowFunctionExpression') {
... | javascript | function getValueReturnedInFirstStatement(func) {
const firstLine = getFirstFunctionLine(func)
if (func) {
if (isFunctionDefinitionWithBlock(func)) {
return isReturnStatement(firstLine) ? firstLine.argument : undefined
}
if (func.type === 'ArrowFunctionExpression') {
... | [
"function",
"getValueReturnedInFirstStatement",
"(",
"func",
")",
"{",
"const",
"firstLine",
"=",
"getFirstFunctionLine",
"(",
"func",
")",
"if",
"(",
"func",
")",
"{",
"if",
"(",
"isFunctionDefinitionWithBlock",
"(",
"func",
")",
")",
"{",
"return",
"isReturnSt... | Returns the node of the value returned in the first line, if any
@param {Object} func
@returns {Object|undefined} | [
"Returns",
"the",
"node",
"of",
"the",
"value",
"returned",
"in",
"the",
"first",
"line",
"if",
"any"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/astUtil.js#L181-L191 | train |
wix/eslint-plugin-lodash | src/util/astUtil.js | isCallFromObject | function isCallFromObject(node, objName) {
return node && objName && node.type === 'CallExpression' && _.get(node, 'callee.object.name') === objName
} | javascript | function isCallFromObject(node, objName) {
return node && objName && node.type === 'CallExpression' && _.get(node, 'callee.object.name') === objName
} | [
"function",
"isCallFromObject",
"(",
"node",
",",
"objName",
")",
"{",
"return",
"node",
"&&",
"objName",
"&&",
"node",
".",
"type",
"===",
"'CallExpression'",
"&&",
"_",
".",
"get",
"(",
"node",
",",
"'callee.object.name'",
")",
"===",
"objName",
"}"
] | Returns whether the node is a call from the specified object name
@param {Object} node
@param {string} objName
@returns {boolean|undefined} | [
"Returns",
"whether",
"the",
"node",
"is",
"a",
"call",
"from",
"the",
"specified",
"object",
"name"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/astUtil.js#L199-L201 | train |
wix/eslint-plugin-lodash | src/util/astUtil.js | getExpressionComparedToInt | function getExpressionComparedToInt(node, value, checkOver) {
const isValue = getIsValue(value)
if (_.includes(comparisonOperators, node.operator)) {
if (isValue(node.right)) {
return node.left
}
if (isValue(node.left)) {
return node.right
}
}
if (... | javascript | function getExpressionComparedToInt(node, value, checkOver) {
const isValue = getIsValue(value)
if (_.includes(comparisonOperators, node.operator)) {
if (isValue(node.right)) {
return node.left
}
if (isValue(node.left)) {
return node.right
}
}
if (... | [
"function",
"getExpressionComparedToInt",
"(",
"node",
",",
"value",
",",
"checkOver",
")",
"{",
"const",
"isValue",
"=",
"getIsValue",
"(",
"value",
")",
"if",
"(",
"_",
".",
"includes",
"(",
"comparisonOperators",
",",
"node",
".",
"operator",
")",
")",
... | Returns the expression compared to the value in a binary expression, or undefined if there isn't one
@param {Object} node
@param {number} value
@param {boolean} [checkOver=false]
@returns {Object|undefined} | [
"Returns",
"the",
"expression",
"compared",
"to",
"the",
"value",
"in",
"a",
"binary",
"expression",
"or",
"undefined",
"if",
"there",
"isn",
"t",
"one"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/astUtil.js#L268-L293 | train |
wix/eslint-plugin-lodash | src/util/astUtil.js | collectParameterValues | function collectParameterValues(node) {
switch (node && node.type) {
case 'Identifier':
return [node.name]
case 'ObjectPattern':
return _.flatMap(node.properties, prop => collectParameterValues(prop.value))
case 'ArrayPattern':
return _.flatMap(node.elemen... | javascript | function collectParameterValues(node) {
switch (node && node.type) {
case 'Identifier':
return [node.name]
case 'ObjectPattern':
return _.flatMap(node.properties, prop => collectParameterValues(prop.value))
case 'ArrayPattern':
return _.flatMap(node.elemen... | [
"function",
"collectParameterValues",
"(",
"node",
")",
"{",
"switch",
"(",
"node",
"&&",
"node",
".",
"type",
")",
"{",
"case",
"'Identifier'",
":",
"return",
"[",
"node",
".",
"name",
"]",
"case",
"'ObjectPattern'",
":",
"return",
"_",
".",
"flatMap",
... | Returns an array of identifier names returned in a parameter or variable definition
@param node an AST node which is a parameter or variable declaration
@returns {string[]} List of names defined in the parameter | [
"Returns",
"an",
"array",
"of",
"identifier",
"names",
"returned",
"in",
"a",
"parameter",
"or",
"variable",
"definition"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/astUtil.js#L314-L325 | train |
wix/eslint-plugin-lodash | src/util/lodashUtil.js | isCallToMethod | function isCallToMethod(node, version, method) {
return methodDataUtil.isAliasOfMethod(version, method, astUtil.getMethodName(node))
} | javascript | function isCallToMethod(node, version, method) {
return methodDataUtil.isAliasOfMethod(version, method, astUtil.getMethodName(node))
} | [
"function",
"isCallToMethod",
"(",
"node",
",",
"version",
",",
"method",
")",
"{",
"return",
"methodDataUtil",
".",
"isAliasOfMethod",
"(",
"version",
",",
"method",
",",
"astUtil",
".",
"getMethodName",
"(",
"node",
")",
")",
"}"
] | Returns whether the node is a call to the specified method or one of its aliases in the version
@param {Object} node
@param {number} version
@param {string} method
@returns {boolean} | [
"Returns",
"whether",
"the",
"node",
"is",
"a",
"call",
"to",
"the",
"specified",
"method",
"or",
"one",
"of",
"its",
"aliases",
"in",
"the",
"version"
] | 2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5 | https://github.com/wix/eslint-plugin-lodash/blob/2a778227d4beeefa86c5af4e0cd193b4f7d5f5e5/src/util/lodashUtil.js#L34-L36 | train |
apache/cordova-create | index.js | cordovaCreateLegacyAdapter | function cordovaCreateLegacyAdapter (dir, id, name, cfg, extEvents) {
// Unwrap and shallow-clone that nasty nested config object
const opts = Object.assign({}, ((cfg || {}).lib || {}).www);
if (id) opts.id = id;
if (name) opts.name = name;
if (extEvents) opts.extEvents = extEvents;
return cor... | javascript | function cordovaCreateLegacyAdapter (dir, id, name, cfg, extEvents) {
// Unwrap and shallow-clone that nasty nested config object
const opts = Object.assign({}, ((cfg || {}).lib || {}).www);
if (id) opts.id = id;
if (name) opts.name = name;
if (extEvents) opts.extEvents = extEvents;
return cor... | [
"function",
"cordovaCreateLegacyAdapter",
"(",
"dir",
",",
"id",
",",
"name",
",",
"cfg",
",",
"extEvents",
")",
"{",
"// Unwrap and shallow-clone that nasty nested config object",
"const",
"opts",
"=",
"Object",
".",
"assign",
"(",
"{",
"}",
",",
"(",
"(",
"cfg... | Legacy interface. See README for documentation | [
"Legacy",
"interface",
".",
"See",
"README",
"for",
"documentation"
] | d2cf1045c497f2e0954f5ee7d813ec1bcc5607d8 | https://github.com/apache/cordova-create/blob/d2cf1045c497f2e0954f5ee7d813ec1bcc5607d8/index.js#L63-L72 | train |
apache/cordova-create | spec/helpers.js | createWithMockFetch | function createWithMockFetch (dir, id, name, cfg, events) {
const mockFetchDest = path.join(tmpDir, 'mockFetchDest');
const templateDir = path.dirname(require.resolve('cordova-app-hello-world'));
const fetchSpy = jasmine.createSpy('fetchSpy')
.and.callFake(() => Promise.resolve(mockFetchDest));
... | javascript | function createWithMockFetch (dir, id, name, cfg, events) {
const mockFetchDest = path.join(tmpDir, 'mockFetchDest');
const templateDir = path.dirname(require.resolve('cordova-app-hello-world'));
const fetchSpy = jasmine.createSpy('fetchSpy')
.and.callFake(() => Promise.resolve(mockFetchDest));
... | [
"function",
"createWithMockFetch",
"(",
"dir",
",",
"id",
",",
"name",
",",
"cfg",
",",
"events",
")",
"{",
"const",
"mockFetchDest",
"=",
"path",
".",
"join",
"(",
"tmpDir",
",",
"'mockFetchDest'",
")",
";",
"const",
"templateDir",
"=",
"path",
".",
"di... | Calls create with mocked fetch to not depend on the outside world | [
"Calls",
"create",
"with",
"mocked",
"fetch",
"to",
"not",
"depend",
"on",
"the",
"outside",
"world"
] | d2cf1045c497f2e0954f5ee7d813ec1bcc5607d8 | https://github.com/apache/cordova-create/blob/d2cf1045c497f2e0954f5ee7d813ec1bcc5607d8/spec/helpers.js#L40-L49 | train |
apache/cordova-create | spec/helpers.js | expectRejection | function expectRejection (promise, expectedReason) {
return promise.then(
() => fail('Expected promise to be rejected'),
reason => {
if (expectedReason instanceof Error) {
expect(reason instanceof expectedReason.constructor).toBeTruthy();
expect(reason.mes... | javascript | function expectRejection (promise, expectedReason) {
return promise.then(
() => fail('Expected promise to be rejected'),
reason => {
if (expectedReason instanceof Error) {
expect(reason instanceof expectedReason.constructor).toBeTruthy();
expect(reason.mes... | [
"function",
"expectRejection",
"(",
"promise",
",",
"expectedReason",
")",
"{",
"return",
"promise",
".",
"then",
"(",
"(",
")",
"=>",
"fail",
"(",
"'Expected promise to be rejected'",
")",
",",
"reason",
"=>",
"{",
"if",
"(",
"expectedReason",
"instanceof",
"... | Expect promise to get rejected with a reason matching expectedReason | [
"Expect",
"promise",
"to",
"get",
"rejected",
"with",
"a",
"reason",
"matching",
"expectedReason"
] | d2cf1045c497f2e0954f5ee7d813ec1bcc5607d8 | https://github.com/apache/cordova-create/blob/d2cf1045c497f2e0954f5ee7d813ec1bcc5607d8/spec/helpers.js#L52-L67 | train |
apache/cordova-create | spec/create.spec.js | checkPackageJson | function checkPackageJson () {
const pkg = requireFresh(path.join(project, 'package.json'));
expect(pkg.name).toEqual(appId);
expect(pkg.displayName).toEqual(appName);
expect(pkg.version).toEqual(appVersion);
} | javascript | function checkPackageJson () {
const pkg = requireFresh(path.join(project, 'package.json'));
expect(pkg.name).toEqual(appId);
expect(pkg.displayName).toEqual(appName);
expect(pkg.version).toEqual(appVersion);
} | [
"function",
"checkPackageJson",
"(",
")",
"{",
"const",
"pkg",
"=",
"requireFresh",
"(",
"path",
".",
"join",
"(",
"project",
",",
"'package.json'",
")",
")",
";",
"expect",
"(",
"pkg",
".",
"name",
")",
".",
"toEqual",
"(",
"appId",
")",
";",
"expect"... | Check that we got package.json and it was updated correctly | [
"Check",
"that",
"we",
"got",
"package",
".",
"json",
"and",
"it",
"was",
"updated",
"correctly"
] | d2cf1045c497f2e0954f5ee7d813ec1bcc5607d8 | https://github.com/apache/cordova-create/blob/d2cf1045c497f2e0954f5ee7d813ec1bcc5607d8/spec/create.spec.js#L92-L97 | train |
apache/cordova-create | spec/create.spec.js | checkDefaultTemplate | function checkDefaultTemplate () {
const pkg = requireFresh(path.join(project, 'package.json'));
expect(pkg.author).toEqual('Apache Cordova Team');
const configXml = new ConfigParser(path.join(project, 'config.xml'));
expect(configXml.author()).toEqual('Apache Cordova Team');
} | javascript | function checkDefaultTemplate () {
const pkg = requireFresh(path.join(project, 'package.json'));
expect(pkg.author).toEqual('Apache Cordova Team');
const configXml = new ConfigParser(path.join(project, 'config.xml'));
expect(configXml.author()).toEqual('Apache Cordova Team');
} | [
"function",
"checkDefaultTemplate",
"(",
")",
"{",
"const",
"pkg",
"=",
"requireFresh",
"(",
"path",
".",
"join",
"(",
"project",
",",
"'package.json'",
")",
")",
";",
"expect",
"(",
"pkg",
".",
"author",
")",
".",
"toEqual",
"(",
"'Apache Cordova Team'",
... | Check that we did use the default template | [
"Check",
"that",
"we",
"did",
"use",
"the",
"default",
"template"
] | d2cf1045c497f2e0954f5ee7d813ec1bcc5607d8 | https://github.com/apache/cordova-create/blob/d2cf1045c497f2e0954f5ee7d813ec1bcc5607d8/spec/create.spec.js#L105-L111 | train |
apache/cordova-create | spec/create.spec.js | checkNotDefaultTemplate | function checkNotDefaultTemplate () {
const configXml = new ConfigParser(path.join(project, 'config.xml'));
expect(configXml.author()).not.toEqual('Apache Cordova Team');
} | javascript | function checkNotDefaultTemplate () {
const configXml = new ConfigParser(path.join(project, 'config.xml'));
expect(configXml.author()).not.toEqual('Apache Cordova Team');
} | [
"function",
"checkNotDefaultTemplate",
"(",
")",
"{",
"const",
"configXml",
"=",
"new",
"ConfigParser",
"(",
"path",
".",
"join",
"(",
"project",
",",
"'config.xml'",
")",
")",
";",
"expect",
"(",
"configXml",
".",
"author",
"(",
")",
")",
".",
"not",
".... | Check that we did not use the default template | [
"Check",
"that",
"we",
"did",
"not",
"use",
"the",
"default",
"template"
] | d2cf1045c497f2e0954f5ee7d813ec1bcc5607d8 | https://github.com/apache/cordova-create/blob/d2cf1045c497f2e0954f5ee7d813ec1bcc5607d8/spec/create.spec.js#L114-L117 | train |
jls/nightwatch-html-reporter | lib/normalize.js | function(results, run, options, done) {
_.each(results, function(result) {
var pkg = {
name: result.testsuites.$.name,
tests: parse(result.testsuites.$.tests),
failures: parse(result.testsuites.$.failures),
suites: []
};
pkg.isFailure = pkg.failures > 0;
va... | javascript | function(results, run, options, done) {
_.each(results, function(result) {
var pkg = {
name: result.testsuites.$.name,
tests: parse(result.testsuites.$.tests),
failures: parse(result.testsuites.$.failures),
suites: []
};
pkg.isFailure = pkg.failures > 0;
va... | [
"function",
"(",
"results",
",",
"run",
",",
"options",
",",
"done",
")",
"{",
"_",
".",
"each",
"(",
"results",
",",
"function",
"(",
"result",
")",
"{",
"var",
"pkg",
"=",
"{",
"name",
":",
"result",
".",
"testsuites",
".",
"$",
".",
"name",
",... | Converts a object parsed from XML report files into models. | [
"Converts",
"a",
"object",
"parsed",
"from",
"XML",
"report",
"files",
"into",
"models",
"."
] | 6214bcf627dead978f7aea368a6f0fe31d9a5415 | https://github.com/jls/nightwatch-html-reporter/blob/6214bcf627dead978f7aea368a6f0fe31d9a5415/lib/normalize.js#L58-L152 | train | |
jls/nightwatch-html-reporter | lib/normalize.js | function(results, run, options, done) {
run.errmessages = concatErrMessages(run.errmessages, results.errmessages);
_.forOwn(results.modules, function(pkg, pkgName) {
var npkg = {
name: pkgName,
suites: [],
tests: pkg.tests,
failures: pkg.failures,
errors: pkg.erro... | javascript | function(results, run, options, done) {
run.errmessages = concatErrMessages(run.errmessages, results.errmessages);
_.forOwn(results.modules, function(pkg, pkgName) {
var npkg = {
name: pkgName,
suites: [],
tests: pkg.tests,
failures: pkg.failures,
errors: pkg.erro... | [
"function",
"(",
"results",
",",
"run",
",",
"options",
",",
"done",
")",
"{",
"run",
".",
"errmessages",
"=",
"concatErrMessages",
"(",
"run",
".",
"errmessages",
",",
"results",
".",
"errmessages",
")",
";",
"_",
".",
"forOwn",
"(",
"results",
".",
"... | Converts an object given to us by nightwatch into models. | [
"Converts",
"an",
"object",
"given",
"to",
"us",
"by",
"nightwatch",
"into",
"models",
"."
] | 6214bcf627dead978f7aea368a6f0fe31d9a5415 | https://github.com/jls/nightwatch-html-reporter/blob/6214bcf627dead978f7aea368a6f0fe31d9a5415/lib/normalize.js#L156-L224 | train | |
auth0/auth0-guardian.js | lib/entities/enrollment.js | enrollment | function enrollment(data) {
var self = object.create(enrollment.prototype);
self.data = data;
return self;
} | javascript | function enrollment(data) {
var self = object.create(enrollment.prototype);
self.data = data;
return self;
} | [
"function",
"enrollment",
"(",
"data",
")",
"{",
"var",
"self",
"=",
"object",
".",
"create",
"(",
"enrollment",
".",
"prototype",
")",
";",
"self",
".",
"data",
"=",
"data",
";",
"return",
"self",
";",
"}"
] | Represents a complete enrollment with its associated data
@param {string} [data.name] Enrollment name
@param {string} [data.phoneNumber] Enrollment phone number (masked)
@param {array.<sms|push|otp>} data.availableAuthenticatorTypes
@public
@returns {Enrollment} | [
"Represents",
"a",
"complete",
"enrollment",
"with",
"its",
"associated",
"data"
] | c0823e588456e3578f5a18a3a2bff56b334c740d | https://github.com/auth0/auth0-guardian.js/blob/c0823e588456e3578f5a18a3a2bff56b334c740d/lib/entities/enrollment.js#L15-L21 | train |
auth0/auth0-guardian.js | lib/utils/socket_client.js | socketClient | function socketClient(serviceUrl) {
var self = object.create(socketClient.prototype);
var urlObject = url.parse(serviceUrl);
// create the url without the path
var socketIoUrl = url.format({
protocol: urlObject.protocol,
hostname: urlObject.hostname
});
var options = {
reconnection: true,
... | javascript | function socketClient(serviceUrl) {
var self = object.create(socketClient.prototype);
var urlObject = url.parse(serviceUrl);
// create the url without the path
var socketIoUrl = url.format({
protocol: urlObject.protocol,
hostname: urlObject.hostname
});
var options = {
reconnection: true,
... | [
"function",
"socketClient",
"(",
"serviceUrl",
")",
"{",
"var",
"self",
"=",
"object",
".",
"create",
"(",
"socketClient",
".",
"prototype",
")",
";",
"var",
"urlObject",
"=",
"url",
".",
"parse",
"(",
"serviceUrl",
")",
";",
"// create the url without the pat... | Construct a socket io client based on a serviceUrl
@param {string} serviceUrl
@return {socketClient} | [
"Construct",
"a",
"socket",
"io",
"client",
"based",
"on",
"a",
"serviceUrl"
] | c0823e588456e3578f5a18a3a2bff56b334c740d | https://github.com/auth0/auth0-guardian.js/blob/c0823e588456e3578f5a18a3a2bff56b334c740d/lib/utils/socket_client.js#L17-L40 | train |
auth0/auth0-guardian.js | lib/entities/enrollment_attempt.js | enrollmentAttempt | function enrollmentAttempt(data, active) {
var self = object.create(enrollmentAttempt.prototype);
self.data = data;
self.active = active || false;
return self;
} | javascript | function enrollmentAttempt(data, active) {
var self = object.create(enrollmentAttempt.prototype);
self.data = data;
self.active = active || false;
return self;
} | [
"function",
"enrollmentAttempt",
"(",
"data",
",",
"active",
")",
"{",
"var",
"self",
"=",
"object",
".",
"create",
"(",
"enrollmentAttempt",
".",
"prototype",
")",
";",
"self",
".",
"data",
"=",
"data",
";",
"self",
".",
"active",
"=",
"active",
"||",
... | Represents a not-yet-complete enrollment; once it is complete an enrollment
will be created instead
@param {string} data.enrollmentTxId
@param {string} data.otpSecret
@param {string} data.issuer.name
@param {string} data.issuer.label
@param {string} data.recoveryCode
@param {string} data.baseUrl
@param {string} data.e... | [
"Represents",
"a",
"not",
"-",
"yet",
"-",
"complete",
"enrollment",
";",
"once",
"it",
"is",
"complete",
"an",
"enrollment",
"will",
"be",
"created",
"instead"
] | c0823e588456e3578f5a18a3a2bff56b334c740d | https://github.com/auth0/auth0-guardian.js/blob/c0823e588456e3578f5a18a3a2bff56b334c740d/lib/entities/enrollment_attempt.js#L21-L28 | train |
auth0/auth0-guardian.js | lib/utils/event_sequencer.js | eventSequencer | function eventSequencer() {
var self = object.create(eventSequencer.prototype);
EventEmitter.call(self);
self.sequences = {};
self.received = {};
self.pipedEmitter = null;
return self;
} | javascript | function eventSequencer() {
var self = object.create(eventSequencer.prototype);
EventEmitter.call(self);
self.sequences = {};
self.received = {};
self.pipedEmitter = null;
return self;
} | [
"function",
"eventSequencer",
"(",
")",
"{",
"var",
"self",
"=",
"object",
".",
"create",
"(",
"eventSequencer",
".",
"prototype",
")",
";",
"EventEmitter",
".",
"call",
"(",
"self",
")",
";",
"self",
".",
"sequences",
"=",
"{",
"}",
";",
"self",
".",
... | Controls the sequence of events, accepts events in any sequence and re-emits
them in the right sequence once it gets all the events in the sequence.
If no sequence is defined the event is re-emitted immediatelly.
Useful to abstract transport layer timming issues and garantee a given
event sequence
Assumed that there ... | [
"Controls",
"the",
"sequence",
"of",
"events",
"accepts",
"events",
"in",
"any",
"sequence",
"and",
"re",
"-",
"emits",
"them",
"in",
"the",
"right",
"sequence",
"once",
"it",
"gets",
"all",
"the",
"events",
"in",
"the",
"sequence",
".",
"If",
"no",
"seq... | c0823e588456e3578f5a18a3a2bff56b334c740d | https://github.com/auth0/auth0-guardian.js/blob/c0823e588456e3578f5a18a3a2bff56b334c740d/lib/utils/event_sequencer.js#L18-L28 | train |
auth0/auth0-guardian.js | lib/utils/http_client.js | httpClient | function httpClient(baseUrl, globalTrackingId) {
var self = object.create(httpClient.prototype);
self.baseUrl = baseUrl;
self.globalTrackingId = globalTrackingId;
return self;
} | javascript | function httpClient(baseUrl, globalTrackingId) {
var self = object.create(httpClient.prototype);
self.baseUrl = baseUrl;
self.globalTrackingId = globalTrackingId;
return self;
} | [
"function",
"httpClient",
"(",
"baseUrl",
",",
"globalTrackingId",
")",
"{",
"var",
"self",
"=",
"object",
".",
"create",
"(",
"httpClient",
".",
"prototype",
")",
";",
"self",
".",
"baseUrl",
"=",
"baseUrl",
";",
"self",
".",
"globalTrackingId",
"=",
"glo... | HTTP Client library
@param {string} baseUrl to be format with url.format
@param {string} [globalTrackingId] id uses to associate the request with the
secuence of request in multiple services (just for debugging purposes) | [
"HTTP",
"Client",
"library"
] | c0823e588456e3578f5a18a3a2bff56b334c740d | https://github.com/auth0/auth0-guardian.js/blob/c0823e588456e3578f5a18a3a2bff56b334c740d/lib/utils/http_client.js#L15-L22 | train |
auth0/auth0-guardian.js | lib/utils/event_listener_hub.js | eventListenerHub | function eventListenerHub(emitter, eventName) {
var self = object.create(eventListenerHub.prototype);
self.emitter = emitter;
self.eventName = eventName;
self.handlers = [];
self.defaultHandlerFn = null;
return self;
} | javascript | function eventListenerHub(emitter, eventName) {
var self = object.create(eventListenerHub.prototype);
self.emitter = emitter;
self.eventName = eventName;
self.handlers = [];
self.defaultHandlerFn = null;
return self;
} | [
"function",
"eventListenerHub",
"(",
"emitter",
",",
"eventName",
")",
"{",
"var",
"self",
"=",
"object",
".",
"create",
"(",
"eventListenerHub",
".",
"prototype",
")",
";",
"self",
".",
"emitter",
"=",
"emitter",
";",
"self",
".",
"eventName",
"=",
"event... | A hub keeps track of an event and its listeners on a particular context and
is able to manage them on that context
@param {EventEmitter} emitter
@param {string} eventName | [
"A",
"hub",
"keeps",
"track",
"of",
"an",
"event",
"and",
"its",
"listeners",
"on",
"a",
"particular",
"context",
"and",
"is",
"able",
"to",
"manage",
"them",
"on",
"that",
"context"
] | c0823e588456e3578f5a18a3a2bff56b334c740d | https://github.com/auth0/auth0-guardian.js/blob/c0823e588456e3578f5a18a3a2bff56b334c740d/lib/utils/event_listener_hub.js#L12-L21 | train |
digitalbazaar/jsonld-signatures | lib/ProofSet.js | _addToJSON | function _addToJSON(error) {
Object.defineProperty(error, 'toJSON', {
value: function() {
return serializeError(this);
},
configurable: true,
writable: true
});
} | javascript | function _addToJSON(error) {
Object.defineProperty(error, 'toJSON', {
value: function() {
return serializeError(this);
},
configurable: true,
writable: true
});
} | [
"function",
"_addToJSON",
"(",
"error",
")",
"{",
"Object",
".",
"defineProperty",
"(",
"error",
",",
"'toJSON'",
",",
"{",
"value",
":",
"function",
"(",
")",
"{",
"return",
"serializeError",
"(",
"this",
")",
";",
"}",
",",
"configurable",
":",
"true",... | add a `toJSON` method to an error which allows for errors in validation reports to be serialized properly by `JSON.stringify`. | [
"add",
"a",
"toJSON",
"method",
"to",
"an",
"error",
"which",
"allows",
"for",
"errors",
"in",
"validation",
"reports",
"to",
"be",
"serialized",
"properly",
"by",
"JSON",
".",
"stringify",
"."
] | c2e995a4ff27279a37fcacf55ca131cef2b8c5e4 | https://github.com/digitalbazaar/jsonld-signatures/blob/c2e995a4ff27279a37fcacf55ca131cef2b8c5e4/lib/ProofSet.js#L341-L349 | train |
nativescript-vue/nativescript-vue-devtools | index.js | getServerIpAddress | function getServerIpAddress(host, port) {
if (host) {
return `${host}:${port}`
}
if (isAndroid) {
const FINGERPRINT = android.os.Build.FINGERPRINT
if (FINGERPRINT.includes("vbox")) {
// running on genymotion
return `10.0.3.2:${port}`
} else if (FINGERPRINT.includes("generic")) {
... | javascript | function getServerIpAddress(host, port) {
if (host) {
return `${host}:${port}`
}
if (isAndroid) {
const FINGERPRINT = android.os.Build.FINGERPRINT
if (FINGERPRINT.includes("vbox")) {
// running on genymotion
return `10.0.3.2:${port}`
} else if (FINGERPRINT.includes("generic")) {
... | [
"function",
"getServerIpAddress",
"(",
"host",
",",
"port",
")",
"{",
"if",
"(",
"host",
")",
"{",
"return",
"`",
"${",
"host",
"}",
"${",
"port",
"}",
"`",
"}",
"if",
"(",
"isAndroid",
")",
"{",
"const",
"FINGERPRINT",
"=",
"android",
".",
"os",
"... | Returns the correct address for the host machine when running on emulator
@param host
@param port
@returns {string} | [
"Returns",
"the",
"correct",
"address",
"for",
"the",
"host",
"machine",
"when",
"running",
"on",
"emulator"
] | dc876038d56bb7ae9a1a0f4d77b546d2c41b03e1 | https://github.com/nativescript-vue/nativescript-vue-devtools/blob/dc876038d56bb7ae9a1a0f4d77b546d2c41b03e1/index.js#L28-L46 | train |
opentripplanner/otp-react-redux | lib/actions/api.js | createQueryAction | function createQueryAction (endpoint, responseAction, errorAction, rewritePayload, postprocess) {
return async function (dispatch, getState) {
const otpState = getState().otp
const api = otpState.config.api
const url = `${api.host}${api.port ? ':' + api.port : ''}${api.path}/${endpoint}`
let payload
... | javascript | function createQueryAction (endpoint, responseAction, errorAction, rewritePayload, postprocess) {
return async function (dispatch, getState) {
const otpState = getState().otp
const api = otpState.config.api
const url = `${api.host}${api.port ? ':' + api.port : ''}${api.path}/${endpoint}`
let payload
... | [
"function",
"createQueryAction",
"(",
"endpoint",
",",
"responseAction",
",",
"errorAction",
",",
"rewritePayload",
",",
"postprocess",
")",
"{",
"return",
"async",
"function",
"(",
"dispatch",
",",
"getState",
")",
"{",
"const",
"otpState",
"=",
"getState",
"("... | generic helper for constructing API queries | [
"generic",
"helper",
"for",
"constructing",
"API",
"queries"
] | bf31d167b42e99262380321ae4f07deb18fce29a | https://github.com/opentripplanner/otp-react-redux/blob/bf31d167b42e99262380321ae4f07deb18fce29a/lib/actions/api.js#L346-L374 | train |
opentripplanner/otp-react-redux | lib/components/viewers/stop-viewer.js | getStatusLabel | function getStatusLabel (delay) {
// late departure
if (delay > 60) {
return (
<div className='status-label' style={{ backgroundColor: '#d9534f' }}>
{formatDuration(delay)} Late
</div>
)
}
// early departure
if (delay < -60) {
return (
<div className='status-label' style... | javascript | function getStatusLabel (delay) {
// late departure
if (delay > 60) {
return (
<div className='status-label' style={{ backgroundColor: '#d9534f' }}>
{formatDuration(delay)} Late
</div>
)
}
// early departure
if (delay < -60) {
return (
<div className='status-label' style... | [
"function",
"getStatusLabel",
"(",
"delay",
")",
"{",
"// late departure",
"if",
"(",
"delay",
">",
"60",
")",
"{",
"return",
"(",
"<",
"div",
"className",
"=",
"'status-label'",
"style",
"=",
"{",
"{",
"backgroundColor",
":",
"'#d9534f'",
"}",
"}",
">",
... | helper method to generate status label | [
"helper",
"method",
"to",
"generate",
"status",
"label"
] | bf31d167b42e99262380321ae4f07deb18fce29a | https://github.com/opentripplanner/otp-react-redux/blob/bf31d167b42e99262380321ae4f07deb18fce29a/lib/components/viewers/stop-viewer.js#L247-L272 | train |
opentripplanner/otp-react-redux | lib/components/map/stylized-map.js | mergeTransitiveStyles | function mergeTransitiveStyles (base, extended) {
const styles = Object.assign({}, base)
for (const key in extended) {
if (key in base) styles[key] = Object.assign({}, styles[key], extended[key])
else styles[key] = extended[key]
}
return styles
} | javascript | function mergeTransitiveStyles (base, extended) {
const styles = Object.assign({}, base)
for (const key in extended) {
if (key in base) styles[key] = Object.assign({}, styles[key], extended[key])
else styles[key] = extended[key]
}
return styles
} | [
"function",
"mergeTransitiveStyles",
"(",
"base",
",",
"extended",
")",
"{",
"const",
"styles",
"=",
"Object",
".",
"assign",
"(",
"{",
"}",
",",
"base",
")",
"for",
"(",
"const",
"key",
"in",
"extended",
")",
"{",
"if",
"(",
"key",
"in",
"base",
")"... | extend common transitive styles for stylized map view | [
"extend",
"common",
"transitive",
"styles",
"for",
"stylized",
"map",
"view"
] | bf31d167b42e99262380321ae4f07deb18fce29a | https://github.com/opentripplanner/otp-react-redux/blob/bf31d167b42e99262380321ae4f07deb18fce29a/lib/components/map/stylized-map.js#L46-L53 | train |
bitovi/testee | lib/reporter/index.js | Reporter | function Reporter(MochaReporter, coverage, root, reporterOptions) {
if(typeof MochaReporter === 'string') {
if(mocha.reporters[MochaReporter]) {
MochaReporter = mocha.reporters[MochaReporter];
} else {
try {
MochaReporter = require(MochaReporter);
} catch (e) {
throw new Erro... | javascript | function Reporter(MochaReporter, coverage, root, reporterOptions) {
if(typeof MochaReporter === 'string') {
if(mocha.reporters[MochaReporter]) {
MochaReporter = mocha.reporters[MochaReporter];
} else {
try {
MochaReporter = require(MochaReporter);
} catch (e) {
throw new Erro... | [
"function",
"Reporter",
"(",
"MochaReporter",
",",
"coverage",
",",
"root",
",",
"reporterOptions",
")",
"{",
"if",
"(",
"typeof",
"MochaReporter",
"===",
"'string'",
")",
"{",
"if",
"(",
"mocha",
".",
"reporters",
"[",
"MochaReporter",
"]",
")",
"{",
"Moc... | The reporter listens to service events and reports it to the command line using any of the Mocha reporters. | [
"The",
"reporter",
"listens",
"to",
"service",
"events",
"and",
"reports",
"it",
"to",
"the",
"command",
"line",
"using",
"any",
"of",
"the",
"Mocha",
"reporters",
"."
] | c48fbd35f5c10d17400e6f55b3b3ce3875d1e175 | https://github.com/bitovi/testee/blob/c48fbd35f5c10d17400e6f55b3b3ce3875d1e175/lib/reporter/index.js#L17-L46 | train |
bitovi/testee | lib/runner.js | function (data) {
var isSigned = isTokenSigned(data.file);
var isFinished = data.status === 'finished';
var isComplete = isSigned && isFinished;
debug('checking if run', url, 'is finished', isComplete);
if (isComplete) {
testRuns.removeListener('patched', ch... | javascript | function (data) {
var isSigned = isTokenSigned(data.file);
var isFinished = data.status === 'finished';
var isComplete = isSigned && isFinished;
debug('checking if run', url, 'is finished', isComplete);
if (isComplete) {
testRuns.removeListener('patched', ch... | [
"function",
"(",
"data",
")",
"{",
"var",
"isSigned",
"=",
"isTokenSigned",
"(",
"data",
".",
"file",
")",
";",
"var",
"isFinished",
"=",
"data",
".",
"status",
"===",
"'finished'",
";",
"var",
"isComplete",
"=",
"isSigned",
"&&",
"isFinished",
";",
"deb... | The emitted data.file property contains the token we added to the browser URL | [
"The",
"emitted",
"data",
".",
"file",
"property",
"contains",
"the",
"token",
"we",
"added",
"to",
"the",
"browser",
"URL"
] | c48fbd35f5c10d17400e6f55b3b3ce3875d1e175 | https://github.com/bitovi/testee/blob/c48fbd35f5c10d17400e6f55b3b3ce3875d1e175/lib/runner.js#L32-L41 | train | |
ph0bos/express-microservice-starter | lib/utils/file-util.js | checkFileExistsSync | function checkFileExistsSync(filepath){
var flag = true;
try {
fs.accessSync(filepath, fs.F_OK);
} catch(e){
flag = false;
}
return flag;
} | javascript | function checkFileExistsSync(filepath){
var flag = true;
try {
fs.accessSync(filepath, fs.F_OK);
} catch(e){
flag = false;
}
return flag;
} | [
"function",
"checkFileExistsSync",
"(",
"filepath",
")",
"{",
"var",
"flag",
"=",
"true",
";",
"try",
"{",
"fs",
".",
"accessSync",
"(",
"filepath",
",",
"fs",
".",
"F_OK",
")",
";",
"}",
"catch",
"(",
"e",
")",
"{",
"flag",
"=",
"false",
";",
"}",... | Check the existence of the file | [
"Check",
"the",
"existence",
"of",
"the",
"file"
] | 44953044e518d7c04319423ed1d8b87225e61343 | https://github.com/ph0bos/express-microservice-starter/blob/44953044e518d7c04319423ed1d8b87225e61343/lib/utils/file-util.js#L8-L18 | train |
ph0bos/express-microservice-starter | lib/monitors/microservice-monitor.js | checkMicroserviceHealth | function checkMicroserviceHealth() {
var resolver = Promise.pending();
if (!zoologist.getServiceDiscovery() || !zoologist.getServiceDiscovery().getData()) {
resolver.resolve({
status: (zoologist.getClient().getClient().getState().name === 'SYNC_CONNECTED') ? 'UP' : 'DOWN'
});
return resolver.pro... | javascript | function checkMicroserviceHealth() {
var resolver = Promise.pending();
if (!zoologist.getServiceDiscovery() || !zoologist.getServiceDiscovery().getData()) {
resolver.resolve({
status: (zoologist.getClient().getClient().getState().name === 'SYNC_CONNECTED') ? 'UP' : 'DOWN'
});
return resolver.pro... | [
"function",
"checkMicroserviceHealth",
"(",
")",
"{",
"var",
"resolver",
"=",
"Promise",
".",
"pending",
"(",
")",
";",
"if",
"(",
"!",
"zoologist",
".",
"getServiceDiscovery",
"(",
")",
"||",
"!",
"zoologist",
".",
"getServiceDiscovery",
"(",
")",
".",
"g... | Invoke health check. | [
"Invoke",
"health",
"check",
"."
] | 44953044e518d7c04319423ed1d8b87225e61343 | https://github.com/ph0bos/express-microservice-starter/blob/44953044e518d7c04319423ed1d8b87225e61343/lib/monitors/microservice-monitor.js#L46-L83 | train |
ph0bos/express-microservice-starter | lib/monitors/microservice-monitor.js | checkDependencies | function checkDependencies(dependencies, callback) {
var checkedDependencies = {};
async.each(dependencies, function (dependency, callback) {
zoologist.getServiceDiscovery().queryForInstances(dependency, function(err, instances) {
checkedDependencies[dependency] = ((instances) ? instances.length : 0);
... | javascript | function checkDependencies(dependencies, callback) {
var checkedDependencies = {};
async.each(dependencies, function (dependency, callback) {
zoologist.getServiceDiscovery().queryForInstances(dependency, function(err, instances) {
checkedDependencies[dependency] = ((instances) ? instances.length : 0);
... | [
"function",
"checkDependencies",
"(",
"dependencies",
",",
"callback",
")",
"{",
"var",
"checkedDependencies",
"=",
"{",
"}",
";",
"async",
".",
"each",
"(",
"dependencies",
",",
"function",
"(",
"dependency",
",",
"callback",
")",
"{",
"zoologist",
".",
"ge... | Check the status of any dependencies of this service. | [
"Check",
"the",
"status",
"of",
"any",
"dependencies",
"of",
"this",
"service",
"."
] | 44953044e518d7c04319423ed1d8b87225e61343 | https://github.com/ph0bos/express-microservice-starter/blob/44953044e518d7c04319423ed1d8b87225e61343/lib/monitors/microservice-monitor.js#L88-L100 | train |
ph0bos/express-microservice-starter | index.js | function(options) {
options = options || {};
var config = konfig({ path: options.configPath || process.cwd() + '/config' });
// Default options
options.server = options.server || { port: process.env.PORT };
options.debug = options.debug || false;
options.discoverable ... | javascript | function(options) {
options = options || {};
var config = konfig({ path: options.configPath || process.cwd() + '/config' });
// Default options
options.server = options.server || { port: process.env.PORT };
options.debug = options.debug || false;
options.discoverable ... | [
"function",
"(",
"options",
")",
"{",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"var",
"config",
"=",
"konfig",
"(",
"{",
"path",
":",
"options",
".",
"configPath",
"||",
"process",
".",
"cwd",
"(",
")",
"+",
"'/config'",
"}",
")",
";",
"// D... | Construct an options instance. | [
"Construct",
"an",
"options",
"instance",
"."
] | 44953044e518d7c04319423ed1d8b87225e61343 | https://github.com/ph0bos/express-microservice-starter/blob/44953044e518d7c04319423ed1d8b87225e61343/index.js#L42-L80 | train | |
ph0bos/express-microservice-starter | lib/zoologist.js | ZoologistConfig | function ZoologistConfig() {
this.initialised = false;
this.client = null;
this.serviceInstance = null;
this.serviceDiscovery = null;
this.serviceDependencies = null;
} | javascript | function ZoologistConfig() {
this.initialised = false;
this.client = null;
this.serviceInstance = null;
this.serviceDiscovery = null;
this.serviceDependencies = null;
} | [
"function",
"ZoologistConfig",
"(",
")",
"{",
"this",
".",
"initialised",
"=",
"false",
";",
"this",
".",
"client",
"=",
"null",
";",
"this",
".",
"serviceInstance",
"=",
"null",
";",
"this",
".",
"serviceDiscovery",
"=",
"null",
";",
"this",
".",
"servi... | Create an instance of ZoologistConfig.
@public
@constructor | [
"Create",
"an",
"instance",
"of",
"ZoologistConfig",
"."
] | 44953044e518d7c04319423ed1d8b87225e61343 | https://github.com/ph0bos/express-microservice-starter/blob/44953044e518d7c04319423ed1d8b87225e61343/lib/zoologist.js#L22-L28 | train |
mapbox/cfn-config | lib/actions.js | describeChangeset | function describeChangeset(cfn, name, changesetId, callback) {
var changesetDescriptions;
var changes = [];
(function callAPI(nextToken, callback) {
cfn.describeChangeSet({ ChangeSetName: changesetId, StackName: name, NextToken: nextToken }, function(err, data) {
if (err) return callback(err);
... | javascript | function describeChangeset(cfn, name, changesetId, callback) {
var changesetDescriptions;
var changes = [];
(function callAPI(nextToken, callback) {
cfn.describeChangeSet({ ChangeSetName: changesetId, StackName: name, NextToken: nextToken }, function(err, data) {
if (err) return callback(err);
... | [
"function",
"describeChangeset",
"(",
"cfn",
",",
"name",
",",
"changesetId",
",",
"callback",
")",
"{",
"var",
"changesetDescriptions",
";",
"var",
"changes",
"=",
"[",
"]",
";",
"(",
"function",
"callAPI",
"(",
"nextToken",
",",
"callback",
")",
"{",
"cf... | Poll changeset until it has reached a completed state.
@private
@param {object} cfn - a cloudformation client object
@param {string} name - the name of the existing stack to update
@param {string} changesetId - the name or ARN of an existing changeset
@param {function} callback - a function that will be provided with ... | [
"Poll",
"changeset",
"until",
"it",
"has",
"reached",
"a",
"completed",
"state",
"."
] | 920af56b0dce8918aed30c27869c127be1ba1e99 | https://github.com/mapbox/cfn-config/blob/920af56b0dce8918aed30c27869c127be1ba1e99/lib/actions.js#L292-L315 | train |
mapbox/cfn-config | lib/actions.js | stackParameters | function stackParameters(name, changeSetType, templateUrl, parameters) {
return {
StackName: name,
Capabilities: [
'CAPABILITY_IAM',
'CAPABILITY_NAMED_IAM'
],
ChangeSetType: changeSetType,
TemplateURL: templateUrl,
Parameters: Object.keys(parameters).map(function(key) {
retur... | javascript | function stackParameters(name, changeSetType, templateUrl, parameters) {
return {
StackName: name,
Capabilities: [
'CAPABILITY_IAM',
'CAPABILITY_NAMED_IAM'
],
ChangeSetType: changeSetType,
TemplateURL: templateUrl,
Parameters: Object.keys(parameters).map(function(key) {
retur... | [
"function",
"stackParameters",
"(",
"name",
",",
"changeSetType",
",",
"templateUrl",
",",
"parameters",
")",
"{",
"return",
"{",
"StackName",
":",
"name",
",",
"Capabilities",
":",
"[",
"'CAPABILITY_IAM'",
",",
"'CAPABILITY_NAMED_IAM'",
"]",
",",
"ChangeSetType",... | Build parameters object for CloudFormation requests
@private
@param {string} name - the name of the stack
@param {string} changeSetType - the type of changeset, either UPDATE or CREATE
@param {string} templateUrl - the URL for the template on S3
@param {object} parameters - name/value pairs defining the desired stack ... | [
"Build",
"parameters",
"object",
"for",
"CloudFormation",
"requests"
] | 920af56b0dce8918aed30c27869c127be1ba1e99 | https://github.com/mapbox/cfn-config/blob/920af56b0dce8918aed30c27869c127be1ba1e99/lib/actions.js#L327-L340 | train |
javivelasco/react-css-themr | src/components/themr.js | validateComposeOption | function validateComposeOption(composeTheme) {
if ([ COMPOSE_DEEPLY, COMPOSE_SOFTLY, DONT_COMPOSE ].indexOf(composeTheme) === -1) {
throw new Error(
`Invalid composeTheme option for react-css-themr. Valid composition options\
are ${COMPOSE_DEEPLY}, ${COMPOSE_SOFTLY} and ${DONT_COMPOSE}. The given\
option ... | javascript | function validateComposeOption(composeTheme) {
if ([ COMPOSE_DEEPLY, COMPOSE_SOFTLY, DONT_COMPOSE ].indexOf(composeTheme) === -1) {
throw new Error(
`Invalid composeTheme option for react-css-themr. Valid composition options\
are ${COMPOSE_DEEPLY}, ${COMPOSE_SOFTLY} and ${DONT_COMPOSE}. The given\
option ... | [
"function",
"validateComposeOption",
"(",
"composeTheme",
")",
"{",
"if",
"(",
"[",
"COMPOSE_DEEPLY",
",",
"COMPOSE_SOFTLY",
",",
"DONT_COMPOSE",
"]",
".",
"indexOf",
"(",
"composeTheme",
")",
"===",
"-",
"1",
")",
"{",
"throw",
"new",
"Error",
"(",
"`",
"... | Validates compose option
@param {String|Boolean} composeTheme - Compose them option
@throws
@returns {undefined} | [
"Validates",
"compose",
"option"
] | 8d12cfdca26c141c549a85e8e3065c45b83be654 | https://github.com/javivelasco/react-css-themr/blob/8d12cfdca26c141c549a85e8e3065c45b83be654/src/components/themr.js#L262-L270 | train |
javivelasco/react-css-themr | src/components/themr.js | removeNamespace | function removeNamespace(key, themeNamespace) {
const capitalized = key.substr(themeNamespace.length)
return capitalized.slice(0, 1).toLowerCase() + capitalized.slice(1)
} | javascript | function removeNamespace(key, themeNamespace) {
const capitalized = key.substr(themeNamespace.length)
return capitalized.slice(0, 1).toLowerCase() + capitalized.slice(1)
} | [
"function",
"removeNamespace",
"(",
"key",
",",
"themeNamespace",
")",
"{",
"const",
"capitalized",
"=",
"key",
".",
"substr",
"(",
"themeNamespace",
".",
"length",
")",
"return",
"capitalized",
".",
"slice",
"(",
"0",
",",
"1",
")",
".",
"toLowerCase",
"(... | Removes namespace from key
@param {String} key - Key
@param {String} themeNamespace - Theme namespace
@returns {String} - Key | [
"Removes",
"namespace",
"from",
"key"
] | 8d12cfdca26c141c549a85e8e3065c45b83be654 | https://github.com/javivelasco/react-css-themr/blob/8d12cfdca26c141c549a85e8e3065c45b83be654/src/components/themr.js#L279-L282 | train |
javivelasco/react-css-themr | src/components/themr.js | defaultMapThemrProps | function defaultMapThemrProps(ownProps, theme) {
const {
composeTheme, //eslint-disable-line no-unused-vars
innerRef,
themeNamespace, //eslint-disable-line no-unused-vars
mapThemrProps, //eslint-disable-line no-unused-vars
...rest
} = ownProps
return {
...rest,
ref: innerRef,
t... | javascript | function defaultMapThemrProps(ownProps, theme) {
const {
composeTheme, //eslint-disable-line no-unused-vars
innerRef,
themeNamespace, //eslint-disable-line no-unused-vars
mapThemrProps, //eslint-disable-line no-unused-vars
...rest
} = ownProps
return {
...rest,
ref: innerRef,
t... | [
"function",
"defaultMapThemrProps",
"(",
"ownProps",
",",
"theme",
")",
"{",
"const",
"{",
"composeTheme",
",",
"//eslint-disable-line no-unused-vars",
"innerRef",
",",
"themeNamespace",
",",
"//eslint-disable-line no-unused-vars",
"mapThemrProps",
",",
"//eslint-disable-line... | Maps props and theme to an object that will be used to pass down props to the
decorated component.
@param {Object} ownProps - All props given to the decorated component
@param {Object} theme - Calculated then that should be passed down
@returns {Object} - Props that will be passed down to the decorated component | [
"Maps",
"props",
"and",
"theme",
"to",
"an",
"object",
"that",
"will",
"be",
"used",
"to",
"pass",
"down",
"props",
"to",
"the",
"decorated",
"component",
"."
] | 8d12cfdca26c141c549a85e8e3065c45b83be654 | https://github.com/javivelasco/react-css-themr/blob/8d12cfdca26c141c549a85e8e3065c45b83be654/src/components/themr.js#L292-L306 | train |
nisaacson/pdf-extract | lib/raw.js | function (pdf_file, cb) {
var quality = 300;
if (options.hasOwnProperty('quality') && options.quality) {
quality = options.quality;
}
convert(pdf_file.file_path, quality, function (err, tif_path) {
var zeroBasedNumPages = num_pages-1;
... | javascript | function (pdf_file, cb) {
var quality = 300;
if (options.hasOwnProperty('quality') && options.quality) {
quality = options.quality;
}
convert(pdf_file.file_path, quality, function (err, tif_path) {
var zeroBasedNumPages = num_pages-1;
... | [
"function",
"(",
"pdf_file",
",",
"cb",
")",
"{",
"var",
"quality",
"=",
"300",
";",
"if",
"(",
"options",
".",
"hasOwnProperty",
"(",
"'quality'",
")",
"&&",
"options",
".",
"quality",
")",
"{",
"quality",
"=",
"options",
".",
"quality",
";",
"}",
"... | extract the text for each page via ocr | [
"extract",
"the",
"text",
"for",
"each",
"page",
"via",
"ocr"
] | 3325af68da09ced577ce00202ef544f6c10b4833 | https://github.com/nisaacson/pdf-extract/blob/3325af68da09ced577ce00202ef544f6c10b4833/lib/raw.js#L83-L114 | train | |
nisaacson/pdf-extract | lib/split.js | remove_doc_data | function remove_doc_data(callback) {
var folder = path.join(__dirname, '..');
var doc_data_path = path.join(folder, 'doc_data.txt');
fs.exists(doc_data_path, function (exists) {
if (!exists) {
return callback();
}
fs.unlink(doc_data_path, callback);
});
} | javascript | function remove_doc_data(callback) {
var folder = path.join(__dirname, '..');
var doc_data_path = path.join(folder, 'doc_data.txt');
fs.exists(doc_data_path, function (exists) {
if (!exists) {
return callback();
}
fs.unlink(doc_data_path, callback);
});
} | [
"function",
"remove_doc_data",
"(",
"callback",
")",
"{",
"var",
"folder",
"=",
"path",
".",
"join",
"(",
"__dirname",
",",
"'..'",
")",
";",
"var",
"doc_data_path",
"=",
"path",
".",
"join",
"(",
"folder",
",",
"'doc_data.txt'",
")",
";",
"fs",
".",
"... | pdftk creates a file called doc_data.txt during the burst split process.
This file is not needed so remove it now | [
"pdftk",
"creates",
"a",
"file",
"called",
"doc_data",
".",
"txt",
"during",
"the",
"burst",
"split",
"process",
".",
"This",
"file",
"is",
"not",
"needed",
"so",
"remove",
"it",
"now"
] | 3325af68da09ced577ce00202ef544f6c10b4833 | https://github.com/nisaacson/pdf-extract/blob/3325af68da09ced577ce00202ef544f6c10b4833/lib/split.js#L127-L136 | train |
nisaacson/pdf-extract | lib/searchable.js | cleanup_directory | function cleanup_directory(directory_path, callback) {
// only remove the folder at directory_path if it exists
fs.exists(directory_path, function (exists) {
if (!exists) {
return callback();
}
rimraf(directory_path, callback);
});
} | javascript | function cleanup_directory(directory_path, callback) {
// only remove the folder at directory_path if it exists
fs.exists(directory_path, function (exists) {
if (!exists) {
return callback();
}
rimraf(directory_path, callback);
});
} | [
"function",
"cleanup_directory",
"(",
"directory_path",
",",
"callback",
")",
"{",
"// only remove the folder at directory_path if it exists",
"fs",
".",
"exists",
"(",
"directory_path",
",",
"function",
"(",
"exists",
")",
"{",
"if",
"(",
"!",
"exists",
")",
"{",
... | Cleanup any single page pdfs on error | [
"Cleanup",
"any",
"single",
"page",
"pdfs",
"on",
"error"
] | 3325af68da09ced577ce00202ef544f6c10b4833 | https://github.com/nisaacson/pdf-extract/blob/3325af68da09ced577ce00202ef544f6c10b4833/lib/searchable.js#L75-L83 | train |
koajs/userauth | index.js | async function () {
let redirectURL = ctx.url;
try {
redirectURL = encodeURIComponent(redirectURL);
} catch (e) {
// URIError: URI malformed
// use source url
}
const loginURL = options.loginPath + '?redirect=' + redirectURL;
debug('redirect ... | javascript | async function () {
let redirectURL = ctx.url;
try {
redirectURL = encodeURIComponent(redirectURL);
} catch (e) {
// URIError: URI malformed
// use source url
}
const loginURL = options.loginPath + '?redirect=' + redirectURL;
debug('redirect ... | [
"async",
"function",
"(",
")",
"{",
"let",
"redirectURL",
"=",
"ctx",
".",
"url",
";",
"try",
"{",
"redirectURL",
"=",
"encodeURIComponent",
"(",
"redirectURL",
")",
";",
"}",
"catch",
"(",
"e",
")",
"{",
"// URIError: URI malformed",
"// use source url",
"}... | make next handle an Async Function so it can use await next in redirectHandle | [
"make",
"next",
"handle",
"an",
"Async",
"Function",
"so",
"it",
"can",
"use",
"await",
"next",
"in",
"redirectHandle"
] | 6d848cbdea4e8fb7dfe50418e009c120bdd1cab9 | https://github.com/koajs/userauth/blob/6d848cbdea4e8fb7dfe50418e009c120bdd1cab9/index.js#L181-L192 | train | |
koajs/userauth | index.js | redirect | function redirect(ctx, url, status) {
if (ctx.accepts('html', 'json') === 'json') {
ctx.set('Location', url);
ctx.status = 401;
ctx.body = {
error: '401 Unauthorized'
};
return;
}
return ctx.redirect(url, status);
} | javascript | function redirect(ctx, url, status) {
if (ctx.accepts('html', 'json') === 'json') {
ctx.set('Location', url);
ctx.status = 401;
ctx.body = {
error: '401 Unauthorized'
};
return;
}
return ctx.redirect(url, status);
} | [
"function",
"redirect",
"(",
"ctx",
",",
"url",
",",
"status",
")",
"{",
"if",
"(",
"ctx",
".",
"accepts",
"(",
"'html'",
",",
"'json'",
")",
"===",
"'json'",
")",
"{",
"ctx",
".",
"set",
"(",
"'Location'",
",",
"url",
")",
";",
"ctx",
".",
"stat... | Send redirect response.
@param {Context} ctx
@param {String} url, redirect URL
@param {Number|String} status, response status code, default is `302`
@api public | [
"Send",
"redirect",
"response",
"."
] | 6d848cbdea4e8fb7dfe50418e009c120bdd1cab9 | https://github.com/koajs/userauth/blob/6d848cbdea4e8fb7dfe50418e009c120bdd1cab9/index.js#L238-L248 | train |
koajs/userauth | index.js | login | function login(options) {
const defaultHost = options.host;
return async function loginHandler(ctx) {
const loginCallbackPath = options.loginCallbackPath;
const loginPath = options.loginPath;
// ctx.session should be exists
if (ctx.session) {
ctx.session.userauthLoginReferer = formatReferer(ct... | javascript | function login(options) {
const defaultHost = options.host;
return async function loginHandler(ctx) {
const loginCallbackPath = options.loginCallbackPath;
const loginPath = options.loginPath;
// ctx.session should be exists
if (ctx.session) {
ctx.session.userauthLoginReferer = formatReferer(ct... | [
"function",
"login",
"(",
"options",
")",
"{",
"const",
"defaultHost",
"=",
"options",
".",
"host",
";",
"return",
"async",
"function",
"loginHandler",
"(",
"ctx",
")",
"{",
"const",
"loginCallbackPath",
"=",
"options",
".",
"loginCallbackPath",
";",
"const",
... | return a loginHandler
@param {Object} options
@return {Function} | [
"return",
"a",
"loginHandler"
] | 6d848cbdea4e8fb7dfe50418e009c120bdd1cab9 | https://github.com/koajs/userauth/blob/6d848cbdea4e8fb7dfe50418e009c120bdd1cab9/index.js#L279-L297 | train |
koajs/userauth | index.js | loginCallback | function loginCallback(options) {
return async function loginCallbackHandler(ctx) {
let referer;
// customize how to get redirect target
if (options.getRedirectTarget) {
referer = options.getRedirectTarget(ctx);
}
if (!referer) referer = ctx.session.userauthLoginReferer || options.rootPath;
... | javascript | function loginCallback(options) {
return async function loginCallbackHandler(ctx) {
let referer;
// customize how to get redirect target
if (options.getRedirectTarget) {
referer = options.getRedirectTarget(ctx);
}
if (!referer) referer = ctx.session.userauthLoginReferer || options.rootPath;
... | [
"function",
"loginCallback",
"(",
"options",
")",
"{",
"return",
"async",
"function",
"loginCallbackHandler",
"(",
"ctx",
")",
"{",
"let",
"referer",
";",
"// customize how to get redirect target",
"if",
"(",
"options",
".",
"getRedirectTarget",
")",
"{",
"referer",... | return a loginCallbackHandler
@param {Object} options
@return {Function} | [
"return",
"a",
"loginCallbackHandler"
] | 6d848cbdea4e8fb7dfe50418e009c120bdd1cab9 | https://github.com/koajs/userauth/blob/6d848cbdea4e8fb7dfe50418e009c120bdd1cab9/index.js#L305-L336 | train |
koajs/userauth | index.js | logout | function logout(options) {
return async function logoutHandler(ctx) {
let referer = formatReferer(ctx, options.logoutPath, options.rootPath);
const user = ctx.session[options.userField];
if (!user) {
return redirect(ctx, referer);
}
const redirectURL = await options.logoutCallback(ctx, user... | javascript | function logout(options) {
return async function logoutHandler(ctx) {
let referer = formatReferer(ctx, options.logoutPath, options.rootPath);
const user = ctx.session[options.userField];
if (!user) {
return redirect(ctx, referer);
}
const redirectURL = await options.logoutCallback(ctx, user... | [
"function",
"logout",
"(",
"options",
")",
"{",
"return",
"async",
"function",
"logoutHandler",
"(",
"ctx",
")",
"{",
"let",
"referer",
"=",
"formatReferer",
"(",
"ctx",
",",
"options",
".",
"logoutPath",
",",
"options",
".",
"rootPath",
")",
";",
"const",... | return a logoutHandler
@param {Object} options
@return {Function} | [
"return",
"a",
"logoutHandler"
] | 6d848cbdea4e8fb7dfe50418e009c120bdd1cab9 | https://github.com/koajs/userauth/blob/6d848cbdea4e8fb7dfe50418e009c120bdd1cab9/index.js#L344-L360 | train |
mjeanroy/rollup-plugin-prettier | scripts/release/index.js | bumpLevel | function bumpLevel(level) {
return gulp.src(config.pkg)
.pipe(bump({type: level}))
.on('error', (e) => log.error(e))
.pipe(gulp.dest(config.root));
} | javascript | function bumpLevel(level) {
return gulp.src(config.pkg)
.pipe(bump({type: level}))
.on('error', (e) => log.error(e))
.pipe(gulp.dest(config.root));
} | [
"function",
"bumpLevel",
"(",
"level",
")",
"{",
"return",
"gulp",
".",
"src",
"(",
"config",
".",
"pkg",
")",
".",
"pipe",
"(",
"bump",
"(",
"{",
"type",
":",
"level",
"}",
")",
")",
".",
"on",
"(",
"'error'",
",",
"(",
"e",
")",
"=>",
"log",
... | Update version in number in `package.json` file.
@param {string} level The semver level identifier (`major`, `minor` or `patch`).
@return {WritableStream} The stream pipeline. | [
"Update",
"version",
"in",
"number",
"in",
"package",
".",
"json",
"file",
"."
] | ecac447199b485d7c1a769a4732d3848779a4a61 | https://github.com/mjeanroy/rollup-plugin-prettier/blob/ecac447199b485d7c1a769a4732d3848779a4a61/scripts/release/index.js#L38-L43 | train |
mjeanroy/rollup-plugin-prettier | scripts/release/index.js | createReleaseTask | function createReleaseTask(level) {
/**
* Prepare the release: upgrade version number according to
* the specified level.
*
* @return {WritableStream} The stream pipeline.
*/
function prepareRelease() {
return bumpLevel(level);
}
return gulp.series(
prepareRelease,
performRelease,
... | javascript | function createReleaseTask(level) {
/**
* Prepare the release: upgrade version number according to
* the specified level.
*
* @return {WritableStream} The stream pipeline.
*/
function prepareRelease() {
return bumpLevel(level);
}
return gulp.series(
prepareRelease,
performRelease,
... | [
"function",
"createReleaseTask",
"(",
"level",
")",
"{",
"/**\n * Prepare the release: upgrade version number according to\n * the specified level.\n *\n * @return {WritableStream} The stream pipeline.\n */",
"function",
"prepareRelease",
"(",
")",
"{",
"return",
"bumpLevel",
"("... | Create the release task.
@param {string} level The version level upgrade.
@return {function} The release task function. | [
"Create",
"the",
"release",
"task",
"."
] | ecac447199b485d7c1a769a4732d3848779a4a61 | https://github.com/mjeanroy/rollup-plugin-prettier/blob/ecac447199b485d7c1a769a4732d3848779a4a61/scripts/release/index.js#L97-L114 | train |
cozy/cozy-home | src/lib/realtime.js | subscribeWhenReady | function subscribeWhenReady(doctype, socket) {
if (socket.readyState === WEBSOCKET_STATE.OPEN) {
try {
socket.send(
JSON.stringify({
method: 'SUBSCRIBE',
payload: {
type: doctype
}
})
)
} catch (error) {
// eslint-disable-next-line no... | javascript | function subscribeWhenReady(doctype, socket) {
if (socket.readyState === WEBSOCKET_STATE.OPEN) {
try {
socket.send(
JSON.stringify({
method: 'SUBSCRIBE',
payload: {
type: doctype
}
})
)
} catch (error) {
// eslint-disable-next-line no... | [
"function",
"subscribeWhenReady",
"(",
"doctype",
",",
"socket",
")",
"{",
"if",
"(",
"socket",
".",
"readyState",
"===",
"WEBSOCKET_STATE",
".",
"OPEN",
")",
"{",
"try",
"{",
"socket",
".",
"send",
"(",
"JSON",
".",
"stringify",
"(",
"{",
"method",
":",... | Send a subscribe message for the given doctype trough the given websocket, but only if it is in a ready state. If not, retry a few milliseconds later. | [
"Send",
"a",
"subscribe",
"message",
"for",
"the",
"given",
"doctype",
"trough",
"the",
"given",
"websocket",
"but",
"only",
"if",
"it",
"is",
"in",
"a",
"ready",
"state",
".",
"If",
"not",
"retry",
"a",
"few",
"milliseconds",
"later",
"."
] | c9df834bd2ddba1f1830c950efc6f5bd49531e32 | https://github.com/cozy/cozy-home/blob/c9df834bd2ddba1f1830c950efc6f5bd49531e32/src/lib/realtime.js#L23-L44 | train |
webtorrent/create-torrent | index.js | createTorrent | function createTorrent (input, opts, cb) {
if (typeof opts === 'function') [ opts, cb ] = [ cb, opts ]
opts = opts ? Object.assign({}, opts) : {}
_parseInput(input, opts, (err, files, singleFileTorrent) => {
if (err) return cb(err)
opts.singleFileTorrent = singleFileTorrent
onFiles(files, opts, cb)
... | javascript | function createTorrent (input, opts, cb) {
if (typeof opts === 'function') [ opts, cb ] = [ cb, opts ]
opts = opts ? Object.assign({}, opts) : {}
_parseInput(input, opts, (err, files, singleFileTorrent) => {
if (err) return cb(err)
opts.singleFileTorrent = singleFileTorrent
onFiles(files, opts, cb)
... | [
"function",
"createTorrent",
"(",
"input",
",",
"opts",
",",
"cb",
")",
"{",
"if",
"(",
"typeof",
"opts",
"===",
"'function'",
")",
"[",
"opts",
",",
"cb",
"]",
"=",
"[",
"cb",
",",
"opts",
"]",
"opts",
"=",
"opts",
"?",
"Object",
".",
"assign",
... | Create a torrent.
@param {string|File|FileList|Buffer|Stream|Array.<string|File|Buffer|Stream>} input
@param {Object} opts
@param {string=} opts.name
@param {Date=} opts.creationDate
@param {string=} opts.comment
@param {string=} opts.createdBy
@param {boolean|number=} opts.private
@param {number=} opts.pieceLe... | [
"Create",
"a",
"torrent",
"."
] | 6e6fc18aac7d212a5a8d9c766b12a525618e9ceb | https://github.com/webtorrent/create-torrent/blob/6e6fc18aac7d212a5a8d9c766b12a525618e9ceb/index.js#L42-L51 | train |
Subsets and Splits
SQL Console for semeru/code-text-javascript
Retrieves 20,000 non-null code samples labeled as JavaScript, providing a basic overview of the dataset.