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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
tblobaum/rconsole | rconsole.js | formatIf | function formatIf (bool, format, arr, ref) {
if (bool) {
arr.unshift(format)
return util.format.apply({}, arr)
}
else
return ref
} | javascript | function formatIf (bool, format, arr, ref) {
if (bool) {
arr.unshift(format)
return util.format.apply({}, arr)
}
else
return ref
} | [
"function",
"formatIf",
"(",
"bool",
",",
"format",
",",
"arr",
",",
"ref",
")",
"{",
"if",
"(",
"bool",
")",
"{",
"arr",
".",
"unshift",
"(",
"format",
")",
"return",
"util",
".",
"format",
".",
"apply",
"(",
"{",
"}",
",",
"arr",
")",
"}",
"e... | if bool is true then format | [
"if",
"bool",
"is",
"true",
"then",
"format"
] | 857b9af7b668976a976ac8197c8bd564ecf803bd | https://github.com/tblobaum/rconsole/blob/857b9af7b668976a976ac8197c8bd564ecf803bd/rconsole.js#L280-L287 | train |
tblobaum/rconsole | rconsole.js | prependUntilLength | function prependUntilLength (str, len, char) {
if (str.length >= len)
return str
else
return prependUntilLength(str=char+str, len, char)
} | javascript | function prependUntilLength (str, len, char) {
if (str.length >= len)
return str
else
return prependUntilLength(str=char+str, len, char)
} | [
"function",
"prependUntilLength",
"(",
"str",
",",
"len",
",",
"char",
")",
"{",
"if",
"(",
"str",
".",
"length",
">=",
"len",
")",
"return",
"str",
"else",
"return",
"prependUntilLength",
"(",
"str",
"=",
"char",
"+",
"str",
",",
"len",
",",
"char",
... | Prepends `char` to `str` until it's length is `len`
@param {String} str
@param {Number} len
@param {String} char
@return {String}
@api private | [
"Prepends",
"char",
"to",
"str",
"until",
"it",
"s",
"length",
"is",
"len"
] | 857b9af7b668976a976ac8197c8bd564ecf803bd | https://github.com/tblobaum/rconsole/blob/857b9af7b668976a976ac8197c8bd564ecf803bd/rconsole.js#L299-L304 | train |
tblobaum/rconsole | rconsole.js | defined | function defined () {
for (var i=0; i<arguments.length; i++)
if (typeof arguments[i] !== 'undefined')
return arguments[i]
} | javascript | function defined () {
for (var i=0; i<arguments.length; i++)
if (typeof arguments[i] !== 'undefined')
return arguments[i]
} | [
"function",
"defined",
"(",
")",
"{",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"arguments",
".",
"length",
";",
"i",
"++",
")",
"if",
"(",
"typeof",
"arguments",
"[",
"i",
"]",
"!==",
"'undefined'",
")",
"return",
"arguments",
"[",
"i",
"... | Return the first argument that is not undefined
@api private | [
"Return",
"the",
"first",
"argument",
"that",
"is",
"not",
"undefined"
] | 857b9af7b668976a976ac8197c8bd564ecf803bd | https://github.com/tblobaum/rconsole/blob/857b9af7b668976a976ac8197c8bd564ecf803bd/rconsole.js#L312-L316 | train |
jaredhanson/node-jsonrpc-tcp | lib/jsonrpc-tcp/remote.js | Remote | function Remote(connection) {
this.timeout = 5000;
this._connection = connection;
this._handlers = {};
this._requestID = 1;
var self = this;
this._connection.addListener('response', function(res) {
if (res.id === null || res.id === undefined) { return; }
var handler = self._handlers[res.id];
... | javascript | function Remote(connection) {
this.timeout = 5000;
this._connection = connection;
this._handlers = {};
this._requestID = 1;
var self = this;
this._connection.addListener('response', function(res) {
if (res.id === null || res.id === undefined) { return; }
var handler = self._handlers[res.id];
... | [
"function",
"Remote",
"(",
"connection",
")",
"{",
"this",
".",
"timeout",
"=",
"5000",
";",
"this",
".",
"_connection",
"=",
"connection",
";",
"this",
".",
"_handlers",
"=",
"{",
"}",
";",
"this",
".",
"_requestID",
"=",
"1",
";",
"var",
"self",
"=... | Create a new remote JSON-RPC peer over `connection`.
`Remote` provides a convienient abstraction over a JSON-RPC connection,
allowing methods to be invoked and responses to be received asynchronously.
A `Remote` instance will automatically be created for each connection. There
is no need to do so manually.
@api pri... | [
"Create",
"a",
"new",
"remote",
"JSON",
"-",
"RPC",
"peer",
"over",
"connection",
"."
] | d9dc271b8f50da9fb08ebb46c390fd4c57a89bfc | https://github.com/jaredhanson/node-jsonrpc-tcp/blob/d9dc271b8f50da9fb08ebb46c390fd4c57a89bfc/lib/jsonrpc-tcp/remote.js#L12-L25 | train |
jeffdonthemic/nforce-tooling | index.js | validate | function validate(args, required) {
var result = {
error: false,
message: 'No errors'
}
// ensure required properties were passed in the arguments hash
if (required) {
var keys = _.keys(args);
required.forEach(function(field) {
if(!_.contains(keys, field)) {
re... | javascript | function validate(args, required) {
var result = {
error: false,
message: 'No errors'
}
// ensure required properties were passed in the arguments hash
if (required) {
var keys = _.keys(args);
required.forEach(function(field) {
if(!_.contains(keys, field)) {
re... | [
"function",
"validate",
"(",
"args",
",",
"required",
")",
"{",
"var",
"result",
"=",
"{",
"error",
":",
"false",
",",
"message",
":",
"'No errors'",
"}",
"// ensure required properties were passed in the arguments hash",
"if",
"(",
"required",
")",
"{",
"var",
... | utility method to validate inputs | [
"utility",
"method",
"to",
"validate",
"inputs"
] | 5d9f4704e0ea520f1d9fc4f3ec272f09afaa2549 | https://github.com/jeffdonthemic/nforce-tooling/blob/5d9f4704e0ea520f1d9fc4f3ec272f09afaa2549/index.js#L424-L443 | train |
googlearchive/appengine-nodejs | lib/index.js | makeLogLineProto | function makeLogLineProto(message, time, level) {
var userAppLogLine = new apphosting.UserAppLogLine();
userAppLogLine.setTimestampUsec((time * 1000).toString());
userAppLogLine.setLevel(level);
userAppLogLine.setMessage(message);
return userAppLogLine;
} | javascript | function makeLogLineProto(message, time, level) {
var userAppLogLine = new apphosting.UserAppLogLine();
userAppLogLine.setTimestampUsec((time * 1000).toString());
userAppLogLine.setLevel(level);
userAppLogLine.setMessage(message);
return userAppLogLine;
} | [
"function",
"makeLogLineProto",
"(",
"message",
",",
"time",
",",
"level",
")",
"{",
"var",
"userAppLogLine",
"=",
"new",
"apphosting",
".",
"UserAppLogLine",
"(",
")",
";",
"userAppLogLine",
".",
"setTimestampUsec",
"(",
"(",
"time",
"*",
"1000",
")",
".",
... | Return a log line proto.
@param {!string} message the message to log
@param {!Number} time the timestamp to use in milliseconds
@param {!string} level the log level
@return {!apphosting.UserAppLogLine} a log line proto | [
"Return",
"a",
"log",
"line",
"proto",
"."
] | da3a5c7ff87c74eb3c8976f7d0b233f616765889 | https://github.com/googlearchive/appengine-nodejs/blob/da3a5c7ff87c74eb3c8976f7d0b233f616765889/lib/index.js#L868-L874 | train |
googlearchive/appengine-nodejs | lib/index.js | makeMemcacheSetProto | function makeMemcacheSetProto(key, value) {
var memcacheSetRequest = new apphosting.MemcacheSetRequest();
var item = new apphosting.MemcacheSetRequest.Item();
item.setKey(key);
item.setValue(value);
item.setSetPolicy(apphosting.MemcacheSetRequest.SetPolicy.SET);
memcacheSetRequest.addItem(item);
return me... | javascript | function makeMemcacheSetProto(key, value) {
var memcacheSetRequest = new apphosting.MemcacheSetRequest();
var item = new apphosting.MemcacheSetRequest.Item();
item.setKey(key);
item.setValue(value);
item.setSetPolicy(apphosting.MemcacheSetRequest.SetPolicy.SET);
memcacheSetRequest.addItem(item);
return me... | [
"function",
"makeMemcacheSetProto",
"(",
"key",
",",
"value",
")",
"{",
"var",
"memcacheSetRequest",
"=",
"new",
"apphosting",
".",
"MemcacheSetRequest",
"(",
")",
";",
"var",
"item",
"=",
"new",
"apphosting",
".",
"MemcacheSetRequest",
".",
"Item",
"(",
")",
... | Return a memcache set request proto.
@param {!string} key key of the item to set
@param {!string} value value of the item to set
@return {apphosting.MemcacheSetRequest} a memcache set request proto | [
"Return",
"a",
"memcache",
"set",
"request",
"proto",
"."
] | da3a5c7ff87c74eb3c8976f7d0b233f616765889 | https://github.com/googlearchive/appengine-nodejs/blob/da3a5c7ff87c74eb3c8976f7d0b233f616765889/lib/index.js#L895-L903 | train |
googlearchive/appengine-nodejs | lib/index.js | makeTaskqueueAddProto | function makeTaskqueueAddProto(taskOptions) {
var taskqueueAddRequest = new apphosting.TaskQueueAddRequest();
taskqueueAddRequest.setUrl(taskOptions.url);
taskqueueAddRequest.setQueueName(goog.isDefAndNotNull(taskOptions.queueName) ?
taskOptions.queueName : 'default');
taskqueueAddRequest.setTaskName(goog.i... | javascript | function makeTaskqueueAddProto(taskOptions) {
var taskqueueAddRequest = new apphosting.TaskQueueAddRequest();
taskqueueAddRequest.setUrl(taskOptions.url);
taskqueueAddRequest.setQueueName(goog.isDefAndNotNull(taskOptions.queueName) ?
taskOptions.queueName : 'default');
taskqueueAddRequest.setTaskName(goog.i... | [
"function",
"makeTaskqueueAddProto",
"(",
"taskOptions",
")",
"{",
"var",
"taskqueueAddRequest",
"=",
"new",
"apphosting",
".",
"TaskQueueAddRequest",
"(",
")",
";",
"taskqueueAddRequest",
".",
"setUrl",
"(",
"taskOptions",
".",
"url",
")",
";",
"taskqueueAddRequest... | Return a taskqueue add request proto.
The object representing the task options must satisfy the following contract.
It must have the following (required) properties:
url : a string, the url to dispatch the task request to
It may have the following (optional) properties:
queueName : a string, the name of the queue to ... | [
"Return",
"a",
"taskqueue",
"add",
"request",
"proto",
"."
] | da3a5c7ff87c74eb3c8976f7d0b233f616765889 | https://github.com/googlearchive/appengine-nodejs/blob/da3a5c7ff87c74eb3c8976f7d0b233f616765889/lib/index.js#L933-L959 | train |
googlearchive/appengine-nodejs | lib/index.js | makeBackgroundRequest | function makeBackgroundRequest(req, appId, moduleName, moduleVersion, moduleInstance, appengine) {
var escapedAppId = appId.replace(/[:.]/g, '_');
var token = escapedAppId + '/' + moduleName + '.' + moduleVersion + '.' + moduleInstance;
var result = {
appengine: {
devappserver: req.appengine.devappserve... | javascript | function makeBackgroundRequest(req, appId, moduleName, moduleVersion, moduleInstance, appengine) {
var escapedAppId = appId.replace(/[:.]/g, '_');
var token = escapedAppId + '/' + moduleName + '.' + moduleVersion + '.' + moduleInstance;
var result = {
appengine: {
devappserver: req.appengine.devappserve... | [
"function",
"makeBackgroundRequest",
"(",
"req",
",",
"appId",
",",
"moduleName",
",",
"moduleVersion",
",",
"moduleInstance",
",",
"appengine",
")",
"{",
"var",
"escapedAppId",
"=",
"appId",
".",
"replace",
"(",
"/",
"[:.]",
"/",
"g",
",",
"'_'",
")",
";"... | Return a background request object.
@param {!object} req request
@param {!string} appId application id
@param {!string} moduleName module name
@param {!string} moduleVersion major module version
@param {!string} moduleInstance instance id
@param {!Object} appengine AppEngine instance
@return {!Object} a request object... | [
"Return",
"a",
"background",
"request",
"object",
"."
] | da3a5c7ff87c74eb3c8976f7d0b233f616765889 | https://github.com/googlearchive/appengine-nodejs/blob/da3a5c7ff87c74eb3c8976f7d0b233f616765889/lib/index.js#L972-L991 | train |
googlearchive/appengine-nodejs | lib/index.js | makeModulesGetHostnameProto | function makeModulesGetHostnameProto(module, version, instance) {
var getHostnameRequest = new apphosting.GetHostnameRequest();
getHostnameRequest.setModule(module);
getHostnameRequest.setVersion(version);
getHostnameRequest.setInstance(instance);
return getHostnameRequest;
} | javascript | function makeModulesGetHostnameProto(module, version, instance) {
var getHostnameRequest = new apphosting.GetHostnameRequest();
getHostnameRequest.setModule(module);
getHostnameRequest.setVersion(version);
getHostnameRequest.setInstance(instance);
return getHostnameRequest;
} | [
"function",
"makeModulesGetHostnameProto",
"(",
"module",
",",
"version",
",",
"instance",
")",
"{",
"var",
"getHostnameRequest",
"=",
"new",
"apphosting",
".",
"GetHostnameRequest",
"(",
")",
";",
"getHostnameRequest",
".",
"setModule",
"(",
"module",
")",
";",
... | Return a modules get hostname proto.
@param {!string} module module name
@param {!string} version module version
@param {!string} instance module instance
@return {apphosting.GetHostnameRequest} a modules get hostname proto | [
"Return",
"a",
"modules",
"get",
"hostname",
"proto",
"."
] | da3a5c7ff87c74eb3c8976f7d0b233f616765889 | https://github.com/googlearchive/appengine-nodejs/blob/da3a5c7ff87c74eb3c8976f7d0b233f616765889/lib/index.js#L1001-L1007 | train |
101100/pca9685 | examples/servo.js | servoLoop | function servoLoop() {
timer = setTimeout(servoLoop, 500);
pwm.setPulseLength(steeringChannel, pulseLengths[nextPulse]);
nextPulse = (nextPulse + 1) % pulseLengths.length;
} | javascript | function servoLoop() {
timer = setTimeout(servoLoop, 500);
pwm.setPulseLength(steeringChannel, pulseLengths[nextPulse]);
nextPulse = (nextPulse + 1) % pulseLengths.length;
} | [
"function",
"servoLoop",
"(",
")",
"{",
"timer",
"=",
"setTimeout",
"(",
"servoLoop",
",",
"500",
")",
";",
"pwm",
".",
"setPulseLength",
"(",
"steeringChannel",
",",
"pulseLengths",
"[",
"nextPulse",
"]",
")",
";",
"nextPulse",
"=",
"(",
"nextPulse",
"+",... | loop to cycle through pulse lengths | [
"loop",
"to",
"cycle",
"through",
"pulse",
"lengths"
] | 37f14d08502848fa916f984c19a87eb1c7ccaa28 | https://github.com/101100/pca9685/blob/37f14d08502848fa916f984c19a87eb1c7ccaa28/examples/servo.js#L41-L46 | train |
googlearchive/appengine-nodejs | lib/utils.js | numberArrayToString | function numberArrayToString(a) {
var s = '';
for (var i in a) {
s += String.fromCharCode(a[i]);
}
return s;
} | javascript | function numberArrayToString(a) {
var s = '';
for (var i in a) {
s += String.fromCharCode(a[i]);
}
return s;
} | [
"function",
"numberArrayToString",
"(",
"a",
")",
"{",
"var",
"s",
"=",
"''",
";",
"for",
"(",
"var",
"i",
"in",
"a",
")",
"{",
"s",
"+=",
"String",
".",
"fromCharCode",
"(",
"a",
"[",
"i",
"]",
")",
";",
"}",
"return",
"s",
";",
"}"
] | Convert an array of numbers to a string.
@param {Array.<number>} a array to convert
@return {!string} resulting string | [
"Convert",
"an",
"array",
"of",
"numbers",
"to",
"a",
"string",
"."
] | da3a5c7ff87c74eb3c8976f7d0b233f616765889 | https://github.com/googlearchive/appengine-nodejs/blob/da3a5c7ff87c74eb3c8976f7d0b233f616765889/lib/utils.js#L29-L35 | train |
googlearchive/appengine-nodejs | lib/utils.js | stringToUint8Array | function stringToUint8Array(s) {
var a = new Uint8Array(s.length);
for(var i = 0, j = s.length; i < j; ++i) {
a[i] = s.charCodeAt(i);
}
return a;
} | javascript | function stringToUint8Array(s) {
var a = new Uint8Array(s.length);
for(var i = 0, j = s.length; i < j; ++i) {
a[i] = s.charCodeAt(i);
}
return a;
} | [
"function",
"stringToUint8Array",
"(",
"s",
")",
"{",
"var",
"a",
"=",
"new",
"Uint8Array",
"(",
"s",
".",
"length",
")",
";",
"for",
"(",
"var",
"i",
"=",
"0",
",",
"j",
"=",
"s",
".",
"length",
";",
"i",
"<",
"j",
";",
"++",
"i",
")",
"{",
... | Convert a string to a Uint8Array.
@param {!string} s string to convert
@return {UInt8Array} resulting array | [
"Convert",
"a",
"string",
"to",
"a",
"Uint8Array",
"."
] | da3a5c7ff87c74eb3c8976f7d0b233f616765889 | https://github.com/googlearchive/appengine-nodejs/blob/da3a5c7ff87c74eb3c8976f7d0b233f616765889/lib/utils.js#L57-L63 | train |
jaredhanson/node-jsonrpc-tcp | lib/jsonrpc-tcp/server.js | Server | function Server(clientListener) {
net.Server.call(this);
this._services = [];
if (clientListener) { this.addListener('client', clientListener); }
var self = this;
this.addListener('connection', function(socket) {
var connection = new Connection(socket);
connection.once('connect', function(remote... | javascript | function Server(clientListener) {
net.Server.call(this);
this._services = [];
if (clientListener) { this.addListener('client', clientListener); }
var self = this;
this.addListener('connection', function(socket) {
var connection = new Connection(socket);
connection.once('connect', function(remote... | [
"function",
"Server",
"(",
"clientListener",
")",
"{",
"net",
".",
"Server",
".",
"call",
"(",
"this",
")",
";",
"this",
".",
"_services",
"=",
"[",
"]",
";",
"if",
"(",
"clientListener",
")",
"{",
"this",
".",
"addListener",
"(",
"'client'",
",",
"c... | Create a new JSON-RPC server.
Creates a new JSON-RPC over TCP server. The optional `clientListener`
argument is automatically set as a listener for the 'client' event.
Events:
Event: 'client'
`function(client, remote) { }`
Emitted when a client connects to the server. `client` is a `Connection`,
exposing service... | [
"Create",
"a",
"new",
"JSON",
"-",
"RPC",
"server",
"."
] | d9dc271b8f50da9fb08ebb46c390fd4c57a89bfc | https://github.com/jaredhanson/node-jsonrpc-tcp/blob/d9dc271b8f50da9fb08ebb46c390fd4c57a89bfc/lib/jsonrpc-tcp/server.js#L38-L61 | train |
pelias/microservice-wrapper | service.js | synthesizeUrl | function synthesizeUrl(serviceConfig, req, res) {
const parameters = _.map(serviceConfig.getParameters(req, res), (value, key) => {
return `${key}=${value}`;
}).join('&');
if (parameters) {
return encodeURI(`${serviceConfig.getUrl(req)}?${parameters}`);
} else {
return serviceConfig.getUrl(req);
... | javascript | function synthesizeUrl(serviceConfig, req, res) {
const parameters = _.map(serviceConfig.getParameters(req, res), (value, key) => {
return `${key}=${value}`;
}).join('&');
if (parameters) {
return encodeURI(`${serviceConfig.getUrl(req)}?${parameters}`);
} else {
return serviceConfig.getUrl(req);
... | [
"function",
"synthesizeUrl",
"(",
"serviceConfig",
",",
"req",
",",
"res",
")",
"{",
"const",
"parameters",
"=",
"_",
".",
"map",
"(",
"serviceConfig",
".",
"getParameters",
"(",
"req",
",",
"res",
")",
",",
"(",
"value",
",",
"key",
")",
"=>",
"{",
... | superagent doesn't exposed the assembled GET request, so synthesize it | [
"superagent",
"doesn",
"t",
"exposed",
"the",
"assembled",
"GET",
"request",
"so",
"synthesize",
"it"
] | 0f3e85138646db589b14cab1ac6861dc1a1f33ff | https://github.com/pelias/microservice-wrapper/blob/0f3e85138646db589b14cab1ac6861dc1a1f33ff/service.js#L16-L27 | train |
scravy/uuid-1345 | index.js | parse | function parse(string) {
var buffer = newBufferFromSize(16);
var j = 0;
for (var i = 0; i < 16; i++) {
buffer[i] = hex2byte[string[j++] + string[j++]];
if (i === 3 || i === 5 || i === 7 || i === 9) {
j += 1;
}
}
return buffer;
} | javascript | function parse(string) {
var buffer = newBufferFromSize(16);
var j = 0;
for (var i = 0; i < 16; i++) {
buffer[i] = hex2byte[string[j++] + string[j++]];
if (i === 3 || i === 5 || i === 7 || i === 9) {
j += 1;
}
}
return buffer;
} | [
"function",
"parse",
"(",
"string",
")",
"{",
"var",
"buffer",
"=",
"newBufferFromSize",
"(",
"16",
")",
";",
"var",
"j",
"=",
"0",
";",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"16",
";",
"i",
"++",
")",
"{",
"buffer",
"[",
"i",
"]",... | read stringified uuid into a Buffer | [
"read",
"stringified",
"uuid",
"into",
"a",
"Buffer"
] | 320cc3e5c350886ccfd9b717ec19d183667f9bbd | https://github.com/scravy/uuid-1345/blob/320cc3e5c350886ccfd9b717ec19d183667f9bbd/index.js#L132-L144 | train |
scravy/uuid-1345 | index.js | uuidNamed | function uuidNamed(hashFunc, version, arg1, arg2) {
var options = arg1 || {};
var callback = typeof arg1 === "function" ? arg1 : arg2;
var namespace = options.namespace;
var name = options.name;
var hash = crypto.createHash(hashFunc);
if (typeof namespace === "string") {
if (!check(n... | javascript | function uuidNamed(hashFunc, version, arg1, arg2) {
var options = arg1 || {};
var callback = typeof arg1 === "function" ? arg1 : arg2;
var namespace = options.namespace;
var name = options.name;
var hash = crypto.createHash(hashFunc);
if (typeof namespace === "string") {
if (!check(n... | [
"function",
"uuidNamed",
"(",
"hashFunc",
",",
"version",
",",
"arg1",
",",
"arg2",
")",
"{",
"var",
"options",
"=",
"arg1",
"||",
"{",
"}",
";",
"var",
"callback",
"=",
"typeof",
"arg1",
"===",
"\"function\"",
"?",
"arg1",
":",
"arg2",
";",
"var",
"... | v3 + v5 | [
"v3",
"+",
"v5"
] | 320cc3e5c350886ccfd9b717ec19d183667f9bbd | https://github.com/scravy/uuid-1345/blob/320cc3e5c350886ccfd9b717ec19d183667f9bbd/index.js#L288-L353 | train |
ma-ha/easy-web-app | index.js | async function( req, res, next ) {
try {
var csrfToken = 'default'
if ( req.cookies && req.cookies[ 'pong-security' ] ) {
var token = req.cookies[ 'pong-security' ]
if ( gui.getCsrfTokenForUser ) {
csrfToken = await gui.getCsrfTokenForUser( token )
} else if ( gui.user... | javascript | async function( req, res, next ) {
try {
var csrfToken = 'default'
if ( req.cookies && req.cookies[ 'pong-security' ] ) {
var token = req.cookies[ 'pong-security' ]
if ( gui.getCsrfTokenForUser ) {
csrfToken = await gui.getCsrfTokenForUser( token )
} else if ( gui.user... | [
"async",
"function",
"(",
"req",
",",
"res",
",",
"next",
")",
"{",
"try",
"{",
"var",
"csrfToken",
"=",
"'default'",
"if",
"(",
"req",
".",
"cookies",
"&&",
"req",
".",
"cookies",
"[",
"'pong-security'",
"]",
")",
"{",
"var",
"token",
"=",
"req",
... | inject CSRF token | [
"inject",
"CSRF",
"token"
] | f48ca9d06947e35d29a6188ece17f0f346e07c5e | https://github.com/ma-ha/easy-web-app/blob/f48ca9d06947e35d29a6188ece17f0f346e07c5e/index.js#L1038-L1052 | train | |
sqrrrl/passport-google-plus | examples/offline/app.js | ensureAuthenticated | function ensureAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
req.authClient = new googleapis.auth.OAuth2(GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET);
req.authClient.credentials = req.session.googleCredentials;
return next();
}
res.redirect('/');
} | javascript | function ensureAuthenticated(req, res, next) {
if (req.isAuthenticated()) {
req.authClient = new googleapis.auth.OAuth2(GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET);
req.authClient.credentials = req.session.googleCredentials;
return next();
}
res.redirect('/');
} | [
"function",
"ensureAuthenticated",
"(",
"req",
",",
"res",
",",
"next",
")",
"{",
"if",
"(",
"req",
".",
"isAuthenticated",
"(",
")",
")",
"{",
"req",
".",
"authClient",
"=",
"new",
"googleapis",
".",
"auth",
".",
"OAuth2",
"(",
"GOOGLE_CLIENT_ID",
",",
... | Simple route middleware to ensure user is authenticated, use on any protected resource. Also restores the user's Google oauth token from the session, available as req.authClient | [
"Simple",
"route",
"middleware",
"to",
"ensure",
"user",
"is",
"authenticated",
"use",
"on",
"any",
"protected",
"resource",
".",
"Also",
"restores",
"the",
"user",
"s",
"Google",
"oauth",
"token",
"from",
"the",
"session",
"available",
"as",
"req",
".",
"au... | a1b95150f41f7ccc52c9cb221ab0ec0ccbd4bc08 | https://github.com/sqrrrl/passport-google-plus/blob/a1b95150f41f7ccc52c9cb221ab0ec0ccbd4bc08/examples/offline/app.js#L96-L103 | train |
josemarluedke/ember-cli-segment | app/instance-initializers/segment.js | hasEmberVersion | function hasEmberVersion(major, minor) {
const numbers = VERSION.split('-')[0].split('.');
const actualMajor = parseInt(numbers[0], 10);
const actualMinor = parseInt(numbers[1], 10);
return actualMajor > major || (actualMajor === major && actualMinor >= minor);
} | javascript | function hasEmberVersion(major, minor) {
const numbers = VERSION.split('-')[0].split('.');
const actualMajor = parseInt(numbers[0], 10);
const actualMinor = parseInt(numbers[1], 10);
return actualMajor > major || (actualMajor === major && actualMinor >= minor);
} | [
"function",
"hasEmberVersion",
"(",
"major",
",",
"minor",
")",
"{",
"const",
"numbers",
"=",
"VERSION",
".",
"split",
"(",
"'-'",
")",
"[",
"0",
"]",
".",
"split",
"(",
"'.'",
")",
";",
"const",
"actualMajor",
"=",
"parseInt",
"(",
"numbers",
"[",
"... | Taken from ember-test-helpers | [
"Taken",
"from",
"ember",
"-",
"test",
"-",
"helpers"
] | f40210974d0f5a29dd8aa7d0f5973e36a02ab348 | https://github.com/josemarluedke/ember-cli-segment/blob/f40210974d0f5a29dd8aa7d0f5973e36a02ab348/app/instance-initializers/segment.js#L4-L9 | train |
monkeylearn/monkeylearn-node | lib/request.js | chain_requests | function chain_requests(ml, url) {
return (batches) => {
let promise = new Promise((resolve, reject) => resolve(new MonkeyLearnResponse()));
// attach requests for all the batches sequentially to the original promise and return _that_
return batches.reduce((promise, batch) =>
promise.then((response... | javascript | function chain_requests(ml, url) {
return (batches) => {
let promise = new Promise((resolve, reject) => resolve(new MonkeyLearnResponse()));
// attach requests for all the batches sequentially to the original promise and return _that_
return batches.reduce((promise, batch) =>
promise.then((response... | [
"function",
"chain_requests",
"(",
"ml",
",",
"url",
")",
"{",
"return",
"(",
"batches",
")",
"=>",
"{",
"let",
"promise",
"=",
"new",
"Promise",
"(",
"(",
"resolve",
",",
"reject",
")",
"=>",
"resolve",
"(",
"new",
"MonkeyLearnResponse",
"(",
")",
")"... | returns a function that takes an array of batches and generates a request for each the requests are done sequentially | [
"returns",
"a",
"function",
"that",
"takes",
"an",
"array",
"of",
"batches",
"and",
"generates",
"a",
"request",
"for",
"each",
"the",
"requests",
"are",
"done",
"sequentially"
] | 330e87ca69e8ada160cc5c7eac4968d3400061fe | https://github.com/monkeylearn/monkeylearn-node/blob/330e87ca69e8ada160cc5c7eac4968d3400061fe/lib/request.js#L134-L170 | train |
bigpipe/pagelet | index.js | generator | function generator(n) {
if (!n) return Date.now().toString(36).toUpperCase();
return Math.random().toString(36).substring(2, 10).toUpperCase();
} | javascript | function generator(n) {
if (!n) return Date.now().toString(36).toUpperCase();
return Math.random().toString(36).substring(2, 10).toUpperCase();
} | [
"function",
"generator",
"(",
"n",
")",
"{",
"if",
"(",
"!",
"n",
")",
"return",
"Date",
".",
"now",
"(",
")",
".",
"toString",
"(",
"36",
")",
".",
"toUpperCase",
"(",
")",
";",
"return",
"Math",
".",
"random",
"(",
")",
".",
"toString",
"(",
... | Simple helper function to generate some what unique id's for given
constructed pagelet.
@returns {String}
@api private | [
"Simple",
"helper",
"function",
"to",
"generate",
"some",
"what",
"unique",
"id",
"s",
"for",
"given",
"constructed",
"pagelet",
"."
] | 0f39dfddfbeeec556cbd5cff1c2945a6bb334532 | https://github.com/bigpipe/pagelet/blob/0f39dfddfbeeec556cbd5cff1c2945a6bb334532/index.js#L32-L35 | train |
bigpipe/pagelet | index.js | Pagelet | function Pagelet(options) {
if (!this) return new Pagelet(options);
this.fuse();
options = options || {};
//
// Use the temper instance on Pipe if available.
//
if (options.bigpipe && options.bigpipe._temper) {
options.temper = options.bigpipe._temper;
}
this.writable('_enabled', []); ... | javascript | function Pagelet(options) {
if (!this) return new Pagelet(options);
this.fuse();
options = options || {};
//
// Use the temper instance on Pipe if available.
//
if (options.bigpipe && options.bigpipe._temper) {
options.temper = options.bigpipe._temper;
}
this.writable('_enabled', []); ... | [
"function",
"Pagelet",
"(",
"options",
")",
"{",
"if",
"(",
"!",
"this",
")",
"return",
"new",
"Pagelet",
"(",
"options",
")",
";",
"this",
".",
"fuse",
"(",
")",
";",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"//",
"// Use the temper instance on... | A pagelet is the representation of an item, section, column or widget.
It's basically a small sandboxed application within your application.
@constructor
@param {Object} options Optional configuration.
@api public | [
"A",
"pagelet",
"is",
"the",
"representation",
"of",
"an",
"item",
"section",
"column",
"or",
"widget",
".",
"It",
"s",
"basically",
"a",
"small",
"sandboxed",
"application",
"within",
"your",
"application",
"."
] | 0f39dfddfbeeec556cbd5cff1c2945a6bb334532 | https://github.com/bigpipe/pagelet/blob/0f39dfddfbeeec556cbd5cff1c2945a6bb334532/index.js#L45-L77 | train |
bigpipe/pagelet | index.js | fragment | function fragment(content) {
var active = pagelet.active;
if (!active) content = '';
if (mode === 'sync') return fn.call(context, undefined, content);
data.id = data.id || pagelet.id; // Pagelet id.
data.path = data.path || pagelet.path; // Reference to the path.
data... | javascript | function fragment(content) {
var active = pagelet.active;
if (!active) content = '';
if (mode === 'sync') return fn.call(context, undefined, content);
data.id = data.id || pagelet.id; // Pagelet id.
data.path = data.path || pagelet.path; // Reference to the path.
data... | [
"function",
"fragment",
"(",
"content",
")",
"{",
"var",
"active",
"=",
"pagelet",
".",
"active",
";",
"if",
"(",
"!",
"active",
")",
"content",
"=",
"''",
";",
"if",
"(",
"mode",
"===",
"'sync'",
")",
"return",
"fn",
".",
"call",
"(",
"context",
"... | Write the fragmented data.
@param {String} content The content to respond with.
@returns {Pagelet}
@api private | [
"Write",
"the",
"fragmented",
"data",
"."
] | 0f39dfddfbeeec556cbd5cff1c2945a6bb334532 | https://github.com/bigpipe/pagelet/blob/0f39dfddfbeeec556cbd5cff1c2945a6bb334532/index.js#L796-L823 | train |
bigpipe/pagelet | index.js | optimizer | function optimizer(Pagelet, next) {
var prototype = Pagelet.prototype
, method = prototype.method
, status = prototype.status
, router = prototype.path
, name = prototype.name
, view = prototype.view
, log = debug('pagelet:'+ name);
//
// Generate a unique ID used for re... | javascript | function optimizer(Pagelet, next) {
var prototype = Pagelet.prototype
, method = prototype.method
, status = prototype.status
, router = prototype.path
, name = prototype.name
, view = prototype.view
, log = debug('pagelet:'+ name);
//
// Generate a unique ID used for re... | [
"function",
"optimizer",
"(",
"Pagelet",
",",
"next",
")",
"{",
"var",
"prototype",
"=",
"Pagelet",
".",
"prototype",
",",
"method",
"=",
"prototype",
".",
"method",
",",
"status",
"=",
"prototype",
".",
"status",
",",
"router",
"=",
"prototype",
".",
"p... | Optimize the pagelet. This function is called by default as part of
the async stack.
@param {Function} next Completion callback
@api private | [
"Optimize",
"the",
"pagelet",
".",
"This",
"function",
"is",
"called",
"by",
"default",
"as",
"part",
"of",
"the",
"async",
"stack",
"."
] | 0f39dfddfbeeec556cbd5cff1c2945a6bb334532 | https://github.com/bigpipe/pagelet/blob/0f39dfddfbeeec556cbd5cff1c2945a6bb334532/index.js#L1098-L1195 | train |
demipel8/craftymatter | src/debug.js | worldDebug | function worldDebug() {
Crafty.e( RenderingMode + ', Color' )
.attr( {
x: engine.world.bounds.min.x,
y: engine.world.bounds.min.y,
w: engine.world.bounds.max.x - engine.world.bounds.min.x,
h: engine.world.bounds.max.y - engine.world.bounds.min.y,
alpha: 0.5
} )
.color( 'green' );
} | javascript | function worldDebug() {
Crafty.e( RenderingMode + ', Color' )
.attr( {
x: engine.world.bounds.min.x,
y: engine.world.bounds.min.y,
w: engine.world.bounds.max.x - engine.world.bounds.min.x,
h: engine.world.bounds.max.y - engine.world.bounds.min.y,
alpha: 0.5
} )
.color( 'green' );
} | [
"function",
"worldDebug",
"(",
")",
"{",
"Crafty",
".",
"e",
"(",
"RenderingMode",
"+",
"', Color'",
")",
".",
"attr",
"(",
"{",
"x",
":",
"engine",
".",
"world",
".",
"bounds",
".",
"min",
".",
"x",
",",
"y",
":",
"engine",
".",
"world",
".",
"b... | Creates a rectangle filling the Matter world area | [
"Creates",
"a",
"rectangle",
"filling",
"the",
"Matter",
"world",
"area"
] | 1e05a855f5993e4eb234d811620f634ef94ab2b0 | https://github.com/demipel8/craftymatter/blob/1e05a855f5993e4eb234d811620f634ef94ab2b0/src/debug.js#L6-L16 | train |
demipel8/craftymatter | build/craftymatter.js | function( options, part, isSleeping ) {
var entity = part.entity;
if ( options.showSleeping && isSleeping ) {
entity.alpha = 0.5;
}
if ( entity._x !== part.position.x - ( entity._w / 2 ) ) {
entity.matterMoved = true;
entity.x = part.position.... | javascript | function( options, part, isSleeping ) {
var entity = part.entity;
if ( options.showSleeping && isSleeping ) {
entity.alpha = 0.5;
}
if ( entity._x !== part.position.x - ( entity._w / 2 ) ) {
entity.matterMoved = true;
entity.x = part.position.... | [
"function",
"(",
"options",
",",
"part",
",",
"isSleeping",
")",
"{",
"var",
"entity",
"=",
"part",
".",
"entity",
";",
"if",
"(",
"options",
".",
"showSleeping",
"&&",
"isSleeping",
")",
"{",
"entity",
".",
"alpha",
"=",
"0.5",
";",
"}",
"if",
"(",
... | Moves an entity according to matter calculations
@param {object} options engine.options
@param {object} part part to be moved
@param {Boolean} isSleeping | [
"Moves",
"an",
"entity",
"according",
"to",
"matter",
"calculations"
] | 1e05a855f5993e4eb234d811620f634ef94ab2b0 | https://github.com/demipel8/craftymatter/blob/1e05a855f5993e4eb234d811620f634ef94ab2b0/build/craftymatter.js#L364-L385 | train | |
demipel8/craftymatter | build/craftymatter.js | function( entity, angle ) {
var angleFixed = Crafty.math.radToDeg( angle ).toFixed( 3 );
if ( angle === 0 || entity._rotation === angleFixed ) {
return;
}
entity.matterMoved = true;
entity.rotation = angleFixed;
debug.rotateEntity( [ entity, angleFi... | javascript | function( entity, angle ) {
var angleFixed = Crafty.math.radToDeg( angle ).toFixed( 3 );
if ( angle === 0 || entity._rotation === angleFixed ) {
return;
}
entity.matterMoved = true;
entity.rotation = angleFixed;
debug.rotateEntity( [ entity, angleFi... | [
"function",
"(",
"entity",
",",
"angle",
")",
"{",
"var",
"angleFixed",
"=",
"Crafty",
".",
"math",
".",
"radToDeg",
"(",
"angle",
")",
".",
"toFixed",
"(",
"3",
")",
";",
"if",
"(",
"angle",
"===",
"0",
"||",
"entity",
".",
"_rotation",
"===",
"an... | Initial support only for center origin | [
"Initial",
"support",
"only",
"for",
"center",
"origin"
] | 1e05a855f5993e4eb234d811620f634ef94ab2b0 | https://github.com/demipel8/craftymatter/blob/1e05a855f5993e4eb234d811620f634ef94ab2b0/build/craftymatter.js#L388-L400 | train | |
demipel8/craftymatter | build/craftymatter.js | function( pointA, pointB ) {
var vector = _getVector( pointA, pointB );
return -Crafty.math.radToDeg( Math.atan2( vector.y, vector.x ) ).toFixed( 3 );
} | javascript | function( pointA, pointB ) {
var vector = _getVector( pointA, pointB );
return -Crafty.math.radToDeg( Math.atan2( vector.y, vector.x ) ).toFixed( 3 );
} | [
"function",
"(",
"pointA",
",",
"pointB",
")",
"{",
"var",
"vector",
"=",
"_getVector",
"(",
"pointA",
",",
"pointB",
")",
";",
"return",
"-",
"Crafty",
".",
"math",
".",
"radToDeg",
"(",
"Math",
".",
"atan2",
"(",
"vector",
".",
"y",
",",
"vector",
... | Calculate the angle between a vector and the x axis
@param {Vector} pointA - vector origin
@param {Vector} pointB - vector point
@return {number} angle between the vector and the x axis | [
"Calculate",
"the",
"angle",
"between",
"a",
"vector",
"and",
"the",
"x",
"axis"
] | 1e05a855f5993e4eb234d811620f634ef94ab2b0 | https://github.com/demipel8/craftymatter/blob/1e05a855f5993e4eb234d811620f634ef94ab2b0/build/craftymatter.js#L420-L424 | train | |
demipel8/craftymatter | build/craftymatter.js | function( pointA, pointB ) {
return { x: pointB.x - pointA.x, y: -( pointB.y - pointA.y ) };
} | javascript | function( pointA, pointB ) {
return { x: pointB.x - pointA.x, y: -( pointB.y - pointA.y ) };
} | [
"function",
"(",
"pointA",
",",
"pointB",
")",
"{",
"return",
"{",
"x",
":",
"pointB",
".",
"x",
"-",
"pointA",
".",
"x",
",",
"y",
":",
"-",
"(",
"pointB",
".",
"y",
"-",
"pointA",
".",
"y",
")",
"}",
";",
"}"
] | Creates a vector given its origin and destiny points
@param {Vector} pointA - vector origin
@param {Vector} pointB - vector point
@return {Vector} Resulting vector | [
"Creates",
"a",
"vector",
"given",
"its",
"origin",
"and",
"destiny",
"points"
] | 1e05a855f5993e4eb234d811620f634ef94ab2b0 | https://github.com/demipel8/craftymatter/blob/1e05a855f5993e4eb234d811620f634ef94ab2b0/build/craftymatter.js#L432-L435 | train | |
monkeylearn/monkeylearn-node | lib/models.js | Models | function Models(ml, base_url) {
this.ml = ml;
this.base_url = base_url;
if (includes(base_url, 'classifiers')) {
this.run_action = 'classify';
} else if (includes(base_url, 'extractors')) {
this.run_action = 'extract';
} else {
this.run_action = undefined;
}
} | javascript | function Models(ml, base_url) {
this.ml = ml;
this.base_url = base_url;
if (includes(base_url, 'classifiers')) {
this.run_action = 'classify';
} else if (includes(base_url, 'extractors')) {
this.run_action = 'extract';
} else {
this.run_action = undefined;
}
} | [
"function",
"Models",
"(",
"ml",
",",
"base_url",
")",
"{",
"this",
".",
"ml",
"=",
"ml",
";",
"this",
".",
"base_url",
"=",
"base_url",
";",
"if",
"(",
"includes",
"(",
"base_url",
",",
"'classifiers'",
")",
")",
"{",
"this",
".",
"run_action",
"=",... | base class for endpoints that are in extractors, classifiers and workflows | [
"base",
"class",
"for",
"endpoints",
"that",
"are",
"in",
"extractors",
"classifiers",
"and",
"workflows"
] | 330e87ca69e8ada160cc5c7eac4968d3400061fe | https://github.com/monkeylearn/monkeylearn-node/blob/330e87ca69e8ada160cc5c7eac4968d3400061fe/lib/models.js#L19-L30 | train |
josdejong/rws | lib/ReconnectingWebSocket.js | ReconnectingWebSocket | function ReconnectingWebSocket (url, options) {
var me = this;
this.id = options && options.id || randomUUID();
this.url = url + '/?id=' + this.id;
this.socket = null;
this.opened = false;
this.closed = false;
this.options = {
reconnectTimeout: Infinity, // ms
reconnectInterval: 5000 // ms
... | javascript | function ReconnectingWebSocket (url, options) {
var me = this;
this.id = options && options.id || randomUUID();
this.url = url + '/?id=' + this.id;
this.socket = null;
this.opened = false;
this.closed = false;
this.options = {
reconnectTimeout: Infinity, // ms
reconnectInterval: 5000 // ms
... | [
"function",
"ReconnectingWebSocket",
"(",
"url",
",",
"options",
")",
"{",
"var",
"me",
"=",
"this",
";",
"this",
".",
"id",
"=",
"options",
"&&",
"options",
".",
"id",
"||",
"randomUUID",
"(",
")",
";",
"this",
".",
"url",
"=",
"url",
"+",
"'/?id='"... | An automatically reconnecting WebSocket connection
@param {string} url
@param {Object} options Available options:
- id: number | string An optional identifier for the server
to be able to identify clients.
After connection, the client will send
a message {method: 'greeting', id: id}
- reconnectInterval: num... | [
"An",
"automatically",
"reconnecting",
"WebSocket",
"connection"
] | 9ff4af1073ce4d03ff939ba32c2f6dae16dc7e59 | https://github.com/josdejong/rws/blob/9ff4af1073ce4d03ff939ba32c2f6dae16dc7e59/lib/ReconnectingWebSocket.js#L15-L110 | train |
sqrrrl/passport-google-plus | lib/jwt.js | function(jwt) {
try {
var segments = jwt.split('.');
this.signature = segments.pop();
this.signatureBase = segments.join('.');
this.header = decodeSegment(segments.shift());
this.payload = decodeSegment(segments.shift());
} catch (e) {
throw new Error("Unable to parse JWT");
}
} | javascript | function(jwt) {
try {
var segments = jwt.split('.');
this.signature = segments.pop();
this.signatureBase = segments.join('.');
this.header = decodeSegment(segments.shift());
this.payload = decodeSegment(segments.shift());
} catch (e) {
throw new Error("Unable to parse JWT");
}
} | [
"function",
"(",
"jwt",
")",
"{",
"try",
"{",
"var",
"segments",
"=",
"jwt",
".",
"split",
"(",
"'.'",
")",
";",
"this",
".",
"signature",
"=",
"segments",
".",
"pop",
"(",
")",
";",
"this",
".",
"signatureBase",
"=",
"segments",
".",
"join",
"(",
... | Parse an encoded JWT. Does not ensure validaty of the token.
@constructor
@param {String} jwt Encoded JWT | [
"Parse",
"an",
"encoded",
"JWT",
".",
"Does",
"not",
"ensure",
"validaty",
"of",
"the",
"token",
"."
] | a1b95150f41f7ccc52c9cb221ab0ec0ccbd4bc08 | https://github.com/sqrrrl/passport-google-plus/blob/a1b95150f41f7ccc52c9cb221ab0ec0ccbd4bc08/lib/jwt.js#L37-L47 | train | |
zont/gulp-bower | index.js | gulpBower | function gulpBower(opts, cmdArguments) {
opts = parseOptions(opts);
log.info('Using cwd: ' + opts.cwd);
log.info('Using bower dir: ' + opts.directory);
cmdArguments = createCmdArguments(cmdArguments, opts);
var bowerCommand = getBowerCommand(cmd);
var stream = through.obj(function (file, enc,... | javascript | function gulpBower(opts, cmdArguments) {
opts = parseOptions(opts);
log.info('Using cwd: ' + opts.cwd);
log.info('Using bower dir: ' + opts.directory);
cmdArguments = createCmdArguments(cmdArguments, opts);
var bowerCommand = getBowerCommand(cmd);
var stream = through.obj(function (file, enc,... | [
"function",
"gulpBower",
"(",
"opts",
",",
"cmdArguments",
")",
"{",
"opts",
"=",
"parseOptions",
"(",
"opts",
")",
";",
"log",
".",
"info",
"(",
"'Using cwd: '",
"+",
"opts",
".",
"cwd",
")",
";",
"log",
".",
"info",
"(",
"'Using bower dir: '",
"+",
"... | Gulp bower plugin
@param {(object | string)} opts options object or directory string, see opts.directory
@param {string} opts.cmd bower command (default: install)
@param {string} opts.cwd current working directory (default: process.cwd())
@param {string} opts.directory bower components directory (default: .bowerrc con... | [
"Gulp",
"bower",
"plugin"
] | 48c31b718ee5d9ab5c9dac58d100bb662a99173a | https://github.com/zont/gulp-bower/blob/48c31b718ee5d9ab5c9dac58d100bb662a99173a/index.js#L56-L93 | train |
zont/gulp-bower | index.js | parseOptions | function parseOptions(opts) {
opts = opts || {};
if (toString.call(opts) === '[object String]') {
opts = {
directory: opts
};
}
opts.cwd = opts.cwd || process.cwd();
log.verbosity = toString.call(opts.verbosity) === '[object Number]' ? opts.verbosity : DEFAULT_VERBOSITY... | javascript | function parseOptions(opts) {
opts = opts || {};
if (toString.call(opts) === '[object String]') {
opts = {
directory: opts
};
}
opts.cwd = opts.cwd || process.cwd();
log.verbosity = toString.call(opts.verbosity) === '[object Number]' ? opts.verbosity : DEFAULT_VERBOSITY... | [
"function",
"parseOptions",
"(",
"opts",
")",
"{",
"opts",
"=",
"opts",
"||",
"{",
"}",
";",
"if",
"(",
"toString",
".",
"call",
"(",
"opts",
")",
"===",
"'[object String]'",
")",
"{",
"opts",
"=",
"{",
"directory",
":",
"opts",
"}",
";",
"}",
"opt... | Parse plugin options
@param {object | string} opts options object or directory string | [
"Parse",
"plugin",
"options"
] | 48c31b718ee5d9ab5c9dac58d100bb662a99173a | https://github.com/zont/gulp-bower/blob/48c31b718ee5d9ab5c9dac58d100bb662a99173a/index.js#L100-L125 | train |
zont/gulp-bower | index.js | getDirectoryFromBowerRc | function getDirectoryFromBowerRc(cwd) {
var bowerrc = path.join(cwd, '.bowerrc');
if (!fs.existsSync(bowerrc)) {
return '';
}
var bower_config = {};
try {
bower_config = JSON.parse(fs.readFileSync(bowerrc));
} catch (err) {
return '';
}
return bower_config.dire... | javascript | function getDirectoryFromBowerRc(cwd) {
var bowerrc = path.join(cwd, '.bowerrc');
if (!fs.existsSync(bowerrc)) {
return '';
}
var bower_config = {};
try {
bower_config = JSON.parse(fs.readFileSync(bowerrc));
} catch (err) {
return '';
}
return bower_config.dire... | [
"function",
"getDirectoryFromBowerRc",
"(",
"cwd",
")",
"{",
"var",
"bowerrc",
"=",
"path",
".",
"join",
"(",
"cwd",
",",
"'.bowerrc'",
")",
";",
"if",
"(",
"!",
"fs",
".",
"existsSync",
"(",
"bowerrc",
")",
")",
"{",
"return",
"''",
";",
"}",
"var",... | Detect .bowerrc file and read directory from file
@param {string} cwd current working directory
@returns {string} found directory or empty string | [
"Detect",
".",
"bowerrc",
"file",
"and",
"read",
"directory",
"from",
"file"
] | 48c31b718ee5d9ab5c9dac58d100bb662a99173a | https://github.com/zont/gulp-bower/blob/48c31b718ee5d9ab5c9dac58d100bb662a99173a/index.js#L133-L148 | train |
zont/gulp-bower | index.js | createCmdArguments | function createCmdArguments(cmdArguments, opts) {
if (toString.call(cmdArguments) !== '[object Array]') {
cmdArguments = [];
}
if (toString.call(cmdArguments[0]) !== '[object Array]') {
cmdArguments[0] = [];
}
cmdArguments[1] = cmdArguments[1] || {};
cmdArguments[2] = opts;
... | javascript | function createCmdArguments(cmdArguments, opts) {
if (toString.call(cmdArguments) !== '[object Array]') {
cmdArguments = [];
}
if (toString.call(cmdArguments[0]) !== '[object Array]') {
cmdArguments[0] = [];
}
cmdArguments[1] = cmdArguments[1] || {};
cmdArguments[2] = opts;
... | [
"function",
"createCmdArguments",
"(",
"cmdArguments",
",",
"opts",
")",
"{",
"if",
"(",
"toString",
".",
"call",
"(",
"cmdArguments",
")",
"!==",
"'[object Array]'",
")",
"{",
"cmdArguments",
"=",
"[",
"]",
";",
"}",
"if",
"(",
"toString",
".",
"call",
... | Create command arguments
@param {any} cmdArguments
@param {object} opts options object | [
"Create",
"command",
"arguments"
] | 48c31b718ee5d9ab5c9dac58d100bb662a99173a | https://github.com/zont/gulp-bower/blob/48c31b718ee5d9ab5c9dac58d100bb662a99173a/index.js#L156-L167 | train |
zont/gulp-bower | index.js | getBowerCommand | function getBowerCommand(cmd) {
// bower has some commands that are provided in a nested object structure, e.g. `bower cache clean`.
var bowerCommand;
// clean up the command given, to avoid unnecessary errors
cmd = cmd.trim();
var nestedCommand = cmd.split(' ');
if (nestedCommand.length > 1)... | javascript | function getBowerCommand(cmd) {
// bower has some commands that are provided in a nested object structure, e.g. `bower cache clean`.
var bowerCommand;
// clean up the command given, to avoid unnecessary errors
cmd = cmd.trim();
var nestedCommand = cmd.split(' ');
if (nestedCommand.length > 1)... | [
"function",
"getBowerCommand",
"(",
"cmd",
")",
"{",
"// bower has some commands that are provided in a nested object structure, e.g. `bower cache clean`.",
"var",
"bowerCommand",
";",
"// clean up the command given, to avoid unnecessary errors",
"cmd",
"=",
"cmd",
".",
"trim",
"(",
... | Get bower command instance
@param {string} cmd bower commands, e.g. 'install' | 'update' | 'cache clean' etc.
@returns {object} bower instance initialised with commands | [
"Get",
"bower",
"command",
"instance"
] | 48c31b718ee5d9ab5c9dac58d100bb662a99173a | https://github.com/zont/gulp-bower/blob/48c31b718ee5d9ab5c9dac58d100bb662a99173a/index.js#L175-L206 | train |
zont/gulp-bower | index.js | writeStreamToFs | function writeStreamToFs(opts, stream) {
var baseDir = path.join(opts.cwd, opts.directory);
var walker = walk.walk(baseDir);
walker.on('errors', function (root, stats, next) {
stream.emit('error', new PluginError(PLUGIN_NAME, stats.error));
next();
});
walker.on('directory', functio... | javascript | function writeStreamToFs(opts, stream) {
var baseDir = path.join(opts.cwd, opts.directory);
var walker = walk.walk(baseDir);
walker.on('errors', function (root, stats, next) {
stream.emit('error', new PluginError(PLUGIN_NAME, stats.error));
next();
});
walker.on('directory', functio... | [
"function",
"writeStreamToFs",
"(",
"opts",
",",
"stream",
")",
"{",
"var",
"baseDir",
"=",
"path",
".",
"join",
"(",
"opts",
".",
"cwd",
",",
"opts",
".",
"directory",
")",
";",
"var",
"walker",
"=",
"walk",
".",
"walk",
"(",
"baseDir",
")",
";",
... | Write stream to filesystem
@param {object} opts options object
@param {object} stream file stream | [
"Write",
"stream",
"to",
"filesystem"
] | 48c31b718ee5d9ab5c9dac58d100bb662a99173a | https://github.com/zont/gulp-bower/blob/48c31b718ee5d9ab5c9dac58d100bb662a99173a/index.js#L214-L247 | train |
sqrrrl/passport-google-plus | lib/strategy.js | function(options, authorizationCode, idToken, accessToken) {
this.options = options;
this.authorizationCode = authorizationCode;
this.profile = {};
this.credentials = {
id_token: idToken,
access_token: accessToken
};
this.now = Date.now();
this.apiKey = options.apiKey;
this.clientId = options.cl... | javascript | function(options, authorizationCode, idToken, accessToken) {
this.options = options;
this.authorizationCode = authorizationCode;
this.profile = {};
this.credentials = {
id_token: idToken,
access_token: accessToken
};
this.now = Date.now();
this.apiKey = options.apiKey;
this.clientId = options.cl... | [
"function",
"(",
"options",
",",
"authorizationCode",
",",
"idToken",
",",
"accessToken",
")",
"{",
"this",
".",
"options",
"=",
"options",
";",
"this",
".",
"authorizationCode",
"=",
"authorizationCode",
";",
"this",
".",
"profile",
"=",
"{",
"}",
";",
"t... | Internal state during various phases of exchanging tokens & fetching profiles.
Either an authorization code or ID token needs to be set.
@constructor
@param {Object} options Request-specific options
@param {String} authorizationCode Authorization code to exchange, if available
@Param {String} idToken ID token to verif... | [
"Internal",
"state",
"during",
"various",
"phases",
"of",
"exchanging",
"tokens",
"&",
"fetching",
"profiles",
".",
"Either",
"an",
"authorization",
"code",
"or",
"ID",
"token",
"needs",
"to",
"be",
"set",
"."
] | a1b95150f41f7ccc52c9cb221ab0ec0ccbd4bc08 | https://github.com/sqrrrl/passport-google-plus/blob/a1b95150f41f7ccc52c9cb221ab0ec0ccbd4bc08/lib/strategy.js#L100-L120 | train | |
christkv/require_optional | index.js | function(location) {
var found = false;
while(!found) {
if (exists(location + '/package.json')) {
found = location;
} else if (location !== '/') {
location = path.dirname(location);
} else {
return false;
}
}
return location;
} | javascript | function(location) {
var found = false;
while(!found) {
if (exists(location + '/package.json')) {
found = location;
} else if (location !== '/') {
location = path.dirname(location);
} else {
return false;
}
}
return location;
} | [
"function",
"(",
"location",
")",
"{",
"var",
"found",
"=",
"false",
";",
"while",
"(",
"!",
"found",
")",
"{",
"if",
"(",
"exists",
"(",
"location",
"+",
"'/package.json'",
")",
")",
"{",
"found",
"=",
"location",
";",
"}",
"else",
"if",
"(",
"loc... | Find the location of a package.json file near or above the given location | [
"Find",
"the",
"location",
"of",
"a",
"package",
".",
"json",
"file",
"near",
"or",
"above",
"the",
"given",
"location"
] | c11c4ec54c29d9f5b8a335db379a4670ceeb6cfb | https://github.com/christkv/require_optional/blob/c11c4ec54c29d9f5b8a335db379a4670ceeb6cfb/index.js#L10-L24 | train | |
christkv/require_optional | index.js | function(name) {
// Walk up the module call tree until we find a module containing name in its peerOptionalDependencies
var currentModule = module;
var found = false;
while (currentModule) {
// Check currentModule has a package.json
location = currentModule.filename;
var location = find_package_json... | javascript | function(name) {
// Walk up the module call tree until we find a module containing name in its peerOptionalDependencies
var currentModule = module;
var found = false;
while (currentModule) {
// Check currentModule has a package.json
location = currentModule.filename;
var location = find_package_json... | [
"function",
"(",
"name",
")",
"{",
"// Walk up the module call tree until we find a module containing name in its peerOptionalDependencies",
"var",
"currentModule",
"=",
"module",
";",
"var",
"found",
"=",
"false",
";",
"while",
"(",
"currentModule",
")",
"{",
"// Check cur... | Find the package.json object of the module closest up the module call tree that contains name in that module's peerOptionalDependencies | [
"Find",
"the",
"package",
".",
"json",
"object",
"of",
"the",
"module",
"closest",
"up",
"the",
"module",
"call",
"tree",
"that",
"contains",
"name",
"in",
"that",
"module",
"s",
"peerOptionalDependencies"
] | c11c4ec54c29d9f5b8a335db379a4670ceeb6cfb | https://github.com/christkv/require_optional/blob/c11c4ec54c29d9f5b8a335db379a4670ceeb6cfb/index.js#L32-L68 | train | |
josdejong/rws | lib/Connection.js | ReconnectingConnection | function ReconnectingConnection(id, connection) {
this.id = id;
this.connection = null;
this.closed = false;
this.queue = [];
this.setConnection(connection);
} | javascript | function ReconnectingConnection(id, connection) {
this.id = id;
this.connection = null;
this.closed = false;
this.queue = [];
this.setConnection(connection);
} | [
"function",
"ReconnectingConnection",
"(",
"id",
",",
"connection",
")",
"{",
"this",
".",
"id",
"=",
"id",
";",
"this",
".",
"connection",
"=",
"null",
";",
"this",
".",
"closed",
"=",
"false",
";",
"this",
".",
"queue",
"=",
"[",
"]",
";",
"this",
... | Create a reconnecting connection
@param {number | string} id Identifier for this connection
@param {WebSocket} [connection] A client connection
@constructor | [
"Create",
"a",
"reconnecting",
"connection"
] | 9ff4af1073ce4d03ff939ba32c2f6dae16dc7e59 | https://github.com/josdejong/rws/blob/9ff4af1073ce4d03ff939ba32c2f6dae16dc7e59/lib/Connection.js#L9-L16 | train |
josdejong/rws | lib/ReconnectingWebSocketServer.js | ReconnectingWebSocketServer | function ReconnectingWebSocketServer (options, callback) {
var me = this;
this.port = options && options.port || null;
this.server = new WebSocketServer({port: this.port}, callback);
this.connections = {};
this.server.on('connection', function (conn) {
var urlParts = url.parse(conn.upgradeReq.url, true)... | javascript | function ReconnectingWebSocketServer (options, callback) {
var me = this;
this.port = options && options.port || null;
this.server = new WebSocketServer({port: this.port}, callback);
this.connections = {};
this.server.on('connection', function (conn) {
var urlParts = url.parse(conn.upgradeReq.url, true)... | [
"function",
"ReconnectingWebSocketServer",
"(",
"options",
",",
"callback",
")",
"{",
"var",
"me",
"=",
"this",
";",
"this",
".",
"port",
"=",
"options",
"&&",
"options",
".",
"port",
"||",
"null",
";",
"this",
".",
"server",
"=",
"new",
"WebSocketServer",... | An automatically reconnecting WebSocket server.
@param {Object} options Available options:
- port: number Port number for the server
- reconnectInterval: number Reconnect interval in milliseconds
- reconnectInterval: number Reconnect interval in milliseconds
@param {function} [callback] Callba... | [
"An",
"automatically",
"reconnecting",
"WebSocket",
"server",
"."
] | 9ff4af1073ce4d03ff939ba32c2f6dae16dc7e59 | https://github.com/josdejong/rws/blob/9ff4af1073ce4d03ff939ba32c2f6dae16dc7e59/lib/ReconnectingWebSocketServer.js#L16-L53 | train |
jonschlinkert/esprima-extract-comments | index.js | extract | function extract(str, options) {
const defaults = { tolerant: true, comment: true, tokens: true, range: true, loc: true };
const tokens = esprima.tokenize(str, Object.assign({}, defaults, options));
const comments = [];
for (let i = 0; i < tokens.length; i++) {
let n = i + 1;
const token = tokens[i];
... | javascript | function extract(str, options) {
const defaults = { tolerant: true, comment: true, tokens: true, range: true, loc: true };
const tokens = esprima.tokenize(str, Object.assign({}, defaults, options));
const comments = [];
for (let i = 0; i < tokens.length; i++) {
let n = i + 1;
const token = tokens[i];
... | [
"function",
"extract",
"(",
"str",
",",
"options",
")",
"{",
"const",
"defaults",
"=",
"{",
"tolerant",
":",
"true",
",",
"comment",
":",
"true",
",",
"tokens",
":",
"true",
",",
"range",
":",
"true",
",",
"loc",
":",
"true",
"}",
";",
"const",
"to... | Extract line and block comments from a string of JavaScript.
```js
console.log(extract('// this is a line comment'));
// [ { type: 'Line',
// value: ' this is a line comment',
// range: [ 0, 25 ],
// loc: { start: { line: 1, column: 0 }, end: { line: 1, column: 25 } } } ]
```
@param {String} `string`
@par... | [
"Extract",
"line",
"and",
"block",
"comments",
"from",
"a",
"string",
"of",
"JavaScript",
"."
] | b42674ed3c2c8b237d7a94af37666e0f20e8f930 | https://github.com/jonschlinkert/esprima-extract-comments/blob/b42674ed3c2c8b237d7a94af37666e0f20e8f930/index.js#L30-L49 | train |
idanwe/meteor-client-side | dist/meteor-client-side.bundle.js | function (count, fn) { // 55
var self = this; // 56
var timeout = self._timeout(count); // 57
if (self.retryTimer) // 58
clea... | javascript | function (count, fn) { // 55
var self = this; // 56
var timeout = self._timeout(count); // 57
if (self.retryTimer) // 58
clea... | [
"function",
"(",
"count",
",",
"fn",
")",
"{",
"// 55",
"var",
"self",
"=",
"this",
";",
"// 56",
"var",
"timeout",
"=",
"self",
".",
"_timeout",
"(",
"count",
")",
";",
"// 57",
"if",
"(",
"self",
".",
"retryTimer",
")",
"// 58",
"clearTimeout",
"("... | 52 53 Call `fn` after a delay, based on the `count` of which retry this is. | [
"52",
"53",
"Call",
"fn",
"after",
"a",
"delay",
"based",
"on",
"the",
"count",
"of",
"which",
"retry",
"this",
"is",
"."
] | f065bb3f11afa8248ee376075f2e44b4c124b083 | https://github.com/idanwe/meteor-client-side/blob/f065bb3f11afa8248ee376075f2e44b4c124b083/dist/meteor-client-side.bundle.js#L11122-L11129 | train | |
BorisKozo/node-async-locks | lib/reset-event.js | function (isSignaled, options) {
this.queue = [];
this.isSignaled = Boolean(isSignaled);
this.options = _.extend({}, ResetEvent.defaultOptions, options);
} | javascript | function (isSignaled, options) {
this.queue = [];
this.isSignaled = Boolean(isSignaled);
this.options = _.extend({}, ResetEvent.defaultOptions, options);
} | [
"function",
"(",
"isSignaled",
",",
"options",
")",
"{",
"this",
".",
"queue",
"=",
"[",
"]",
";",
"this",
".",
"isSignaled",
"=",
"Boolean",
"(",
"isSignaled",
")",
";",
"this",
".",
"options",
"=",
"_",
".",
"extend",
"(",
"{",
"}",
",",
"ResetEv... | A Reset Event.
@constructor
@param {boolean} isSignaled - if true then the reset event starts signaled (all calls to wait will pass through)
@param {object} options - optional set of options for this reset event | [
"A",
"Reset",
"Event",
"."
] | ba0e5c998a06612527d510233d179b123129f84a | https://github.com/BorisKozo/node-async-locks/blob/ba0e5c998a06612527d510233d179b123129f84a/lib/reset-event.js#L22-L26 | train | |
MostlyJS/mostly-node | src/handlers.js | onClientPostRequestHandler | function onClientPostRequestHandler (ctx, err) {
// extension error
if (err) {
let error = null;
if (err instanceof SuperError) {
error = err.rootCause || err.cause || err;
} else {
error = err;
}
const internalError = new Errors.MostlyError(Constants.EXTENSION_ERROR, ctx.errorDetail... | javascript | function onClientPostRequestHandler (ctx, err) {
// extension error
if (err) {
let error = null;
if (err instanceof SuperError) {
error = err.rootCause || err.cause || err;
} else {
error = err;
}
const internalError = new Errors.MostlyError(Constants.EXTENSION_ERROR, ctx.errorDetail... | [
"function",
"onClientPostRequestHandler",
"(",
"ctx",
",",
"err",
")",
"{",
"// extension error",
"if",
"(",
"err",
")",
"{",
"let",
"error",
"=",
"null",
";",
"if",
"(",
"err",
"instanceof",
"SuperError",
")",
"{",
"error",
"=",
"err",
".",
"rootCause",
... | Is called after the client has received and decoded the request | [
"Is",
"called",
"after",
"the",
"client",
"has",
"received",
"and",
"decoded",
"the",
"request"
] | 694b1d44bf089a48a183f239e90e5ca7b7b921b8 | https://github.com/MostlyJS/mostly-node/blob/694b1d44bf089a48a183f239e90e5ca7b7b921b8/src/handlers.js#L14-L46 | train |
MostlyJS/mostly-node | src/handlers.js | onClientTimeoutPostRequestHandler | function onClientTimeoutPostRequestHandler (ctx, err) {
if (err) {
let error = null;
if (err instanceof SuperError) {
error = err.rootCause || err.cause || err;
} else {
error = err;
}
let internalError = new Errors.MostlyError(Constants.EXTENSION_ERROR).causedBy(err);
ctx.log.err... | javascript | function onClientTimeoutPostRequestHandler (ctx, err) {
if (err) {
let error = null;
if (err instanceof SuperError) {
error = err.rootCause || err.cause || err;
} else {
error = err;
}
let internalError = new Errors.MostlyError(Constants.EXTENSION_ERROR).causedBy(err);
ctx.log.err... | [
"function",
"onClientTimeoutPostRequestHandler",
"(",
"ctx",
",",
"err",
")",
"{",
"if",
"(",
"err",
")",
"{",
"let",
"error",
"=",
"null",
";",
"if",
"(",
"err",
"instanceof",
"SuperError",
")",
"{",
"error",
"=",
"err",
".",
"rootCause",
"||",
"err",
... | Is called after the client request timeout | [
"Is",
"called",
"after",
"the",
"client",
"request",
"timeout"
] | 694b1d44bf089a48a183f239e90e5ca7b7b921b8 | https://github.com/MostlyJS/mostly-node/blob/694b1d44bf089a48a183f239e90e5ca7b7b921b8/src/handlers.js#L51-L87 | train |
MostlyJS/mostly-node | src/handlers.js | onPreRequestHandler | function onPreRequestHandler (ctx, err) {
let m = ctx._encoderPipeline.run(ctx._message, ctx);
// encoding issue
if (m.error) {
let error = new Errors.ParseError(Constants.PAYLOAD_PARSING_ERROR).causedBy(m.error);
ctx.log.error(error);
ctx.emit('clientResponseError', error);
ctx._execute(error);... | javascript | function onPreRequestHandler (ctx, err) {
let m = ctx._encoderPipeline.run(ctx._message, ctx);
// encoding issue
if (m.error) {
let error = new Errors.ParseError(Constants.PAYLOAD_PARSING_ERROR).causedBy(m.error);
ctx.log.error(error);
ctx.emit('clientResponseError', error);
ctx._execute(error);... | [
"function",
"onPreRequestHandler",
"(",
"ctx",
",",
"err",
")",
"{",
"let",
"m",
"=",
"ctx",
".",
"_encoderPipeline",
".",
"run",
"(",
"ctx",
".",
"_message",
",",
"ctx",
")",
";",
"// encoding issue",
"if",
"(",
"m",
".",
"error",
")",
"{",
"let",
"... | Is called before the client has send the request to NATS | [
"Is",
"called",
"before",
"the",
"client",
"has",
"send",
"the",
"request",
"to",
"NATS"
] | 694b1d44bf089a48a183f239e90e5ca7b7b921b8 | https://github.com/MostlyJS/mostly-node/blob/694b1d44bf089a48a183f239e90e5ca7b7b921b8/src/handlers.js#L92-L148 | train |
MostlyJS/mostly-node | src/handlers.js | onServerPreHandler | function onServerPreHandler (ctx, err, value) {
if (err) {
if (err instanceof SuperError) {
ctx._response.error = err.rootCause || err.cause || err;
} else {
ctx._response.error = err;
}
const internalError = new Errors.MostlyError(
Constants.EXTENSION_ERROR, ctx.errorDetails).cau... | javascript | function onServerPreHandler (ctx, err, value) {
if (err) {
if (err instanceof SuperError) {
ctx._response.error = err.rootCause || err.cause || err;
} else {
ctx._response.error = err;
}
const internalError = new Errors.MostlyError(
Constants.EXTENSION_ERROR, ctx.errorDetails).cau... | [
"function",
"onServerPreHandler",
"(",
"ctx",
",",
"err",
",",
"value",
")",
"{",
"if",
"(",
"err",
")",
"{",
"if",
"(",
"err",
"instanceof",
"SuperError",
")",
"{",
"ctx",
".",
"_response",
".",
"error",
"=",
"err",
".",
"rootCause",
"||",
"err",
".... | Is called before the server action is executed | [
"Is",
"called",
"before",
"the",
"server",
"action",
"is",
"executed"
] | 694b1d44bf089a48a183f239e90e5ca7b7b921b8 | https://github.com/MostlyJS/mostly-node/blob/694b1d44bf089a48a183f239e90e5ca7b7b921b8/src/handlers.js#L153-L221 | train |
MostlyJS/mostly-node | src/handlers.js | onServerPreRequestHandler | function onServerPreRequestHandler (ctx, err, value) {
if (err) {
if (err instanceof SuperError) {
ctx._response.error = err.rootCause || err.cause || err;
} else {
ctx._response.error = err;
}
return ctx.finish();
}
// reply value from extension
if (value) {
ctx._response.payl... | javascript | function onServerPreRequestHandler (ctx, err, value) {
if (err) {
if (err instanceof SuperError) {
ctx._response.error = err.rootCause || err.cause || err;
} else {
ctx._response.error = err;
}
return ctx.finish();
}
// reply value from extension
if (value) {
ctx._response.payl... | [
"function",
"onServerPreRequestHandler",
"(",
"ctx",
",",
"err",
",",
"value",
")",
"{",
"if",
"(",
"err",
")",
"{",
"if",
"(",
"err",
"instanceof",
"SuperError",
")",
"{",
"ctx",
".",
"_response",
".",
"error",
"=",
"err",
".",
"rootCause",
"||",
"err... | Is called before the server has received the request | [
"Is",
"called",
"before",
"the",
"server",
"has",
"received",
"the",
"request"
] | 694b1d44bf089a48a183f239e90e5ca7b7b921b8 | https://github.com/MostlyJS/mostly-node/blob/694b1d44bf089a48a183f239e90e5ca7b7b921b8/src/handlers.js#L226-L256 | train |
MostlyJS/mostly-node | src/handlers.js | onServerPreResponseHandler | function onServerPreResponseHandler (ctx, err, value) {
// check if an error was already wrapped
if (ctx._response.error) {
ctx.emit('serverResponseError', ctx._response.error);
ctx.log.error(ctx._response.error);
} else if (err) { // check for an extension error
if (err instanceof SuperError) {
... | javascript | function onServerPreResponseHandler (ctx, err, value) {
// check if an error was already wrapped
if (ctx._response.error) {
ctx.emit('serverResponseError', ctx._response.error);
ctx.log.error(ctx._response.error);
} else if (err) { // check for an extension error
if (err instanceof SuperError) {
... | [
"function",
"onServerPreResponseHandler",
"(",
"ctx",
",",
"err",
",",
"value",
")",
"{",
"// check if an error was already wrapped",
"if",
"(",
"ctx",
".",
"_response",
".",
"error",
")",
"{",
"ctx",
".",
"emit",
"(",
"'serverResponseError'",
",",
"ctx",
".",
... | Is called before the server has replied and build the message | [
"Is",
"called",
"before",
"the",
"server",
"has",
"replied",
"and",
"build",
"the",
"message"
] | 694b1d44bf089a48a183f239e90e5ca7b7b921b8 | https://github.com/MostlyJS/mostly-node/blob/694b1d44bf089a48a183f239e90e5ca7b7b921b8/src/handlers.js#L261-L307 | train |
MostlyJS/mostly-node | src/handlers.js | onClose | function onClose (ctx, err, val, cb) {
// no callback no queue processing
if (!_.isFunction(cb)) {
ctx._heavy.stop();
ctx._transport.close();
if (err) {
ctx.log.fatal(err);
ctx.emit('error', err);
}
return;
}
// unsubscribe all active subscriptions
ctx.removeAll();
// wait ... | javascript | function onClose (ctx, err, val, cb) {
// no callback no queue processing
if (!_.isFunction(cb)) {
ctx._heavy.stop();
ctx._transport.close();
if (err) {
ctx.log.fatal(err);
ctx.emit('error', err);
}
return;
}
// unsubscribe all active subscriptions
ctx.removeAll();
// wait ... | [
"function",
"onClose",
"(",
"ctx",
",",
"err",
",",
"val",
",",
"cb",
")",
"{",
"// no callback no queue processing",
"if",
"(",
"!",
"_",
".",
"isFunction",
"(",
"cb",
")",
")",
"{",
"ctx",
".",
"_heavy",
".",
"stop",
"(",
")",
";",
"ctx",
".",
"_... | Is called after all onClose extensions have been called | [
"Is",
"called",
"after",
"all",
"onClose",
"extensions",
"have",
"been",
"called"
] | 694b1d44bf089a48a183f239e90e5ca7b7b921b8 | https://github.com/MostlyJS/mostly-node/blob/694b1d44bf089a48a183f239e90e5ca7b7b921b8/src/handlers.js#L312-L346 | train |
MostlyJS/mostly-node | src/check-plugin.js | checkPlugin | function checkPlugin (fn, version) {
if (typeof fn !== 'function') {
throw new TypeError(`mostly-plugin expects a function, instead got a '${typeof fn}'`);
}
if (version) {
if (typeof version !== 'string') {
throw new TypeError(`mostly-plugin expects a version string as second parameter, instead go... | javascript | function checkPlugin (fn, version) {
if (typeof fn !== 'function') {
throw new TypeError(`mostly-plugin expects a function, instead got a '${typeof fn}'`);
}
if (version) {
if (typeof version !== 'string') {
throw new TypeError(`mostly-plugin expects a version string as second parameter, instead go... | [
"function",
"checkPlugin",
"(",
"fn",
",",
"version",
")",
"{",
"if",
"(",
"typeof",
"fn",
"!==",
"'function'",
")",
"{",
"throw",
"new",
"TypeError",
"(",
"`",
"${",
"typeof",
"fn",
"}",
"`",
")",
";",
"}",
"if",
"(",
"version",
")",
"{",
"if",
... | Check the bare-minimum version of mostly-node Provide consistent interface to register plugins even when the api is changed | [
"Check",
"the",
"bare",
"-",
"minimum",
"version",
"of",
"mostly",
"-",
"node",
"Provide",
"consistent",
"interface",
"to",
"register",
"plugins",
"even",
"when",
"the",
"api",
"is",
"changed"
] | 694b1d44bf089a48a183f239e90e5ca7b7b921b8 | https://github.com/MostlyJS/mostly-node/blob/694b1d44bf089a48a183f239e90e5ca7b7b921b8/src/check-plugin.js#L5-L22 | train |
ioBroker/adapter-core | build/utils.js | getControllerDir | function getControllerDir(isInstall) {
// Find the js-controller location
const possibilities = ["iobroker.js-controller", "ioBroker.js-controller"];
let controllerPath;
for (const pkg of possibilities) {
try {
const possiblePath = require.resolve(pkg);
if (fs.existsSync(... | javascript | function getControllerDir(isInstall) {
// Find the js-controller location
const possibilities = ["iobroker.js-controller", "ioBroker.js-controller"];
let controllerPath;
for (const pkg of possibilities) {
try {
const possiblePath = require.resolve(pkg);
if (fs.existsSync(... | [
"function",
"getControllerDir",
"(",
"isInstall",
")",
"{",
"// Find the js-controller location",
"const",
"possibilities",
"=",
"[",
"\"iobroker.js-controller\"",
",",
"\"ioBroker.js-controller\"",
"]",
";",
"let",
"controllerPath",
";",
"for",
"(",
"const",
"pkg",
"of... | Resolves the root directory of JS-Controller and returns it or exits the process
@param isInstall Whether the adapter is run in "install" mode or if it should execute normally | [
"Resolves",
"the",
"root",
"directory",
"of",
"JS",
"-",
"Controller",
"and",
"returns",
"it",
"or",
"exits",
"the",
"process"
] | 6ee9f41b2cefd6d1dcd953e5d3936dac8d9fc2e7 | https://github.com/ioBroker/adapter-core/blob/6ee9f41b2cefd6d1dcd953e5d3936dac8d9fc2e7/build/utils.js#L9-L38 | train |
cesardeazevedo/sails-hook-sequelize-blueprints | actions/add.js | function (cb) {
Model.findById(parentPk, { include: [{ all : true }]}).then(function(parentRecord) {
if (!parentRecord) return cb({status: 404});
if (!parentRecord[relation]) { return cb({status: 404}); }
cb(null, parentRecord);
}).catch(function(err){
return cb(err);
}... | javascript | function (cb) {
Model.findById(parentPk, { include: [{ all : true }]}).then(function(parentRecord) {
if (!parentRecord) return cb({status: 404});
if (!parentRecord[relation]) { return cb({status: 404}); }
cb(null, parentRecord);
}).catch(function(err){
return cb(err);
}... | [
"function",
"(",
"cb",
")",
"{",
"Model",
".",
"findById",
"(",
"parentPk",
",",
"{",
"include",
":",
"[",
"{",
"all",
":",
"true",
"}",
"]",
"}",
")",
".",
"then",
"(",
"function",
"(",
"parentRecord",
")",
"{",
"if",
"(",
"!",
"parentRecord",
"... | Look up the parent record | [
"Look",
"up",
"the",
"parent",
"record"
] | d0e6ac217ad285c82cdaa39c9198efdb59837d6e | https://github.com/cesardeazevedo/sails-hook-sequelize-blueprints/blob/d0e6ac217ad285c82cdaa39c9198efdb59837d6e/actions/add.js#L84-L92 | train | |
cesardeazevedo/sails-hook-sequelize-blueprints | actions/add.js | createChild | function createChild(customCb) {
ChildModel.create(child).then(function(newChildRecord){
if (req._sails.hooks.pubsub) {
if (req.isSocket) {
ChildModel.subscribe(req, newChildRecord);
ChildModel.introduce(newChildRecord);
}
ChildModel.pu... | javascript | function createChild(customCb) {
ChildModel.create(child).then(function(newChildRecord){
if (req._sails.hooks.pubsub) {
if (req.isSocket) {
ChildModel.subscribe(req, newChildRecord);
ChildModel.introduce(newChildRecord);
}
ChildModel.pu... | [
"function",
"createChild",
"(",
"customCb",
")",
"{",
"ChildModel",
".",
"create",
"(",
"child",
")",
".",
"then",
"(",
"function",
"(",
"newChildRecord",
")",
"{",
"if",
"(",
"req",
".",
"_sails",
".",
"hooks",
".",
"pubsub",
")",
"{",
"if",
"(",
"r... | Create a new instance and send out any required pubsub messages. | [
"Create",
"a",
"new",
"instance",
"and",
"send",
"out",
"any",
"required",
"pubsub",
"messages",
"."
] | d0e6ac217ad285c82cdaa39c9198efdb59837d6e | https://github.com/cesardeazevedo/sails-hook-sequelize-blueprints/blob/d0e6ac217ad285c82cdaa39c9198efdb59837d6e/actions/add.js#L163-L182 | train |
bracketclub/bracket-generator | index.js | function () {
if (_uniq(matchup, true).length < 2) return 1
return matchup.indexOf(Math.max.apply(Math, matchup))
} | javascript | function () {
if (_uniq(matchup, true).length < 2) return 1
return matchup.indexOf(Math.max.apply(Math, matchup))
} | [
"function",
"(",
")",
"{",
"if",
"(",
"_uniq",
"(",
"matchup",
",",
"true",
")",
".",
"length",
"<",
"2",
")",
"return",
"1",
"return",
"matchup",
".",
"indexOf",
"(",
"Math",
".",
"max",
".",
"apply",
"(",
"Math",
",",
"matchup",
")",
")",
"}"
] | Higher means higher seed OR if seeds are the same 2nd team | [
"Higher",
"means",
"higher",
"seed",
"OR",
"if",
"seeds",
"are",
"the",
"same",
"2nd",
"team"
] | f986dbf3cc257a9412c1cb4212a20795132f1904 | https://github.com/bracketclub/bracket-generator/blob/f986dbf3cc257a9412c1cb4212a20795132f1904/index.js#L55-L58 | train | |
bracketclub/bracket-generator | index.js | function () {
if (_uniq(matchup, true).length < 2) return 0
return matchup.indexOf(Math.min.apply(Math, matchup))
} | javascript | function () {
if (_uniq(matchup, true).length < 2) return 0
return matchup.indexOf(Math.min.apply(Math, matchup))
} | [
"function",
"(",
")",
"{",
"if",
"(",
"_uniq",
"(",
"matchup",
",",
"true",
")",
".",
"length",
"<",
"2",
")",
"return",
"0",
"return",
"matchup",
".",
"indexOf",
"(",
"Math",
".",
"min",
".",
"apply",
"(",
"Math",
",",
"matchup",
")",
")",
"}"
] | Lower means lower seed OR if seeds are the same 1st team | [
"Lower",
"means",
"lower",
"seed",
"OR",
"if",
"seeds",
"are",
"the",
"same",
"1st",
"team"
] | f986dbf3cc257a9412c1cb4212a20795132f1904 | https://github.com/bracketclub/bracket-generator/blob/f986dbf3cc257a9412c1cb4212a20795132f1904/index.js#L60-L63 | train | |
hexus/phaser-slopes | src/Matter/World.js | isIrrelevant | function isIrrelevant(tile) {
return !tile
|| !tile.physics
|| !tile.physics.matterBody
|| !tile.physics.matterBody.body
|| !tile.physics.matterBody.body.vertices
|| !tile.physics.slopes
|| !tile.physics.slopes.neighbours
|| !tile.physics.slopes.edges;
} | javascript | function isIrrelevant(tile) {
return !tile
|| !tile.physics
|| !tile.physics.matterBody
|| !tile.physics.matterBody.body
|| !tile.physics.matterBody.body.vertices
|| !tile.physics.slopes
|| !tile.physics.slopes.neighbours
|| !tile.physics.slopes.edges;
} | [
"function",
"isIrrelevant",
"(",
"tile",
")",
"{",
"return",
"!",
"tile",
"||",
"!",
"tile",
".",
"physics",
"||",
"!",
"tile",
".",
"physics",
".",
"matterBody",
"||",
"!",
"tile",
".",
"physics",
".",
"matterBody",
".",
"body",
"||",
"!",
"tile",
"... | Determine whether a tile is irrelevant to the plugin's edge processing.
@param {Phaser.Tilemaps.Tile} tile
@return {boolean} | [
"Determine",
"whether",
"a",
"tile",
"is",
"irrelevant",
"to",
"the",
"plugin",
"s",
"edge",
"processing",
"."
] | 1ef1137ea4cdea920dc312f760000e2463ef40af | https://github.com/hexus/phaser-slopes/blob/1ef1137ea4cdea920dc312f760000e2463ef40af/src/Matter/World.js#L13-L22 | train |
hexus/phaser-slopes | src/Matter/World.js | containsNormal | function containsNormal(normal, normals) {
let n;
for (n = 0; n < normals.length; n++) {
if (!normals[n].ignore && Vector.dot(normal, normals[n]) === 1) {
return true;
}
}
return false;
} | javascript | function containsNormal(normal, normals) {
let n;
for (n = 0; n < normals.length; n++) {
if (!normals[n].ignore && Vector.dot(normal, normals[n]) === 1) {
return true;
}
}
return false;
} | [
"function",
"containsNormal",
"(",
"normal",
",",
"normals",
")",
"{",
"let",
"n",
";",
"for",
"(",
"n",
"=",
"0",
";",
"n",
"<",
"normals",
".",
"length",
";",
"n",
"++",
")",
"{",
"if",
"(",
"!",
"normals",
"[",
"n",
"]",
".",
"ignore",
"&&",... | Determine whether a normal is contained in a set of normals.
Skips over ignored normals.
@param {Object} normal - The normal to look for.
@param {Object[]} normals - The normals to search.
@return {boolean} Whether the normal is in the list of normals. | [
"Determine",
"whether",
"a",
"normal",
"is",
"contained",
"in",
"a",
"set",
"of",
"normals",
"."
] | 1ef1137ea4cdea920dc312f760000e2463ef40af | https://github.com/hexus/phaser-slopes/blob/1ef1137ea4cdea920dc312f760000e2463ef40af/src/Matter/World.js#L44-L54 | train |
hexus/phaser-slopes | src/Matter/World.js | buildEdgeVertex | function buildEdgeVertex(index, x, y, tileBody, isGhost) {
let vertex = {
x: x,
y: y,
index: index,
body: tileBody,
isInternal: false,
isGhost: isGhost,
contact: null
};
vertex.contact = {
vertex: vertex,
normalImpulse: 0,
tangentImpulse: 0
};
return vertex;
} | javascript | function buildEdgeVertex(index, x, y, tileBody, isGhost) {
let vertex = {
x: x,
y: y,
index: index,
body: tileBody,
isInternal: false,
isGhost: isGhost,
contact: null
};
vertex.contact = {
vertex: vertex,
normalImpulse: 0,
tangentImpulse: 0
};
return vertex;
} | [
"function",
"buildEdgeVertex",
"(",
"index",
",",
"x",
",",
"y",
",",
"tileBody",
",",
"isGhost",
")",
"{",
"let",
"vertex",
"=",
"{",
"x",
":",
"x",
",",
"y",
":",
"y",
",",
"index",
":",
"index",
",",
"body",
":",
"tileBody",
",",
"isInternal",
... | Build a vertex for an edge.
@param {int} index
@param {number} x
@param {number} y
@param {Object} tileBody
@param {boolean} [isGhost] | [
"Build",
"a",
"vertex",
"for",
"an",
"edge",
"."
] | 1ef1137ea4cdea920dc312f760000e2463ef40af | https://github.com/hexus/phaser-slopes/blob/1ef1137ea4cdea920dc312f760000e2463ef40af/src/Matter/World.js#L65-L83 | train |
hexus/phaser-slopes | src/Matter/World.js | buildEdge | function buildEdge(vertex1, vertex2, tileBody, vertex0, vertex3) {
vertex0 = vertex0 || null;
vertex3 = vertex3 || null;
let vertices = [];
// Build the vertices
vertices.push(
vertex0 ? buildEdgeVertex(0, vertex0.x, vertex0.y, tileBody, true) : null,
buildEdgeVertex(1, vertex1.x, vertex1.y, tileBody),
bu... | javascript | function buildEdge(vertex1, vertex2, tileBody, vertex0, vertex3) {
vertex0 = vertex0 || null;
vertex3 = vertex3 || null;
let vertices = [];
// Build the vertices
vertices.push(
vertex0 ? buildEdgeVertex(0, vertex0.x, vertex0.y, tileBody, true) : null,
buildEdgeVertex(1, vertex1.x, vertex1.y, tileBody),
bu... | [
"function",
"buildEdge",
"(",
"vertex1",
",",
"vertex2",
",",
"tileBody",
",",
"vertex0",
",",
"vertex3",
")",
"{",
"vertex0",
"=",
"vertex0",
"||",
"null",
";",
"vertex3",
"=",
"vertex3",
"||",
"null",
";",
"let",
"vertices",
"=",
"[",
"]",
";",
"// B... | Build a ghost edge for a tile body.
@param {Object} vertex1 - The first vertex of the central edge.
@param {Object} vertex2 - The second vertex of the central edge.
@param {Object} tileBody - The tile body the ghost edge belongs to.
@param {Object} [vertex0] - The vertex of the leading ghost edge.
@param {Object} [ver... | [
"Build",
"a",
"ghost",
"edge",
"for",
"a",
"tile",
"body",
"."
] | 1ef1137ea4cdea920dc312f760000e2463ef40af | https://github.com/hexus/phaser-slopes/blob/1ef1137ea4cdea920dc312f760000e2463ef40af/src/Matter/World.js#L94-L126 | train |
hexus/phaser-slopes | src/Matter/World.js | isAxisAligned | function isAxisAligned(vector) {
for (let d in Constants.Directions) {
let direction = Constants.Directions[d];
if (Vector.dot(direction, vector) === 1) {
return true;
}
}
return false;
} | javascript | function isAxisAligned(vector) {
for (let d in Constants.Directions) {
let direction = Constants.Directions[d];
if (Vector.dot(direction, vector) === 1) {
return true;
}
}
return false;
} | [
"function",
"isAxisAligned",
"(",
"vector",
")",
"{",
"for",
"(",
"let",
"d",
"in",
"Constants",
".",
"Directions",
")",
"{",
"let",
"direction",
"=",
"Constants",
".",
"Directions",
"[",
"d",
"]",
";",
"if",
"(",
"Vector",
".",
"dot",
"(",
"direction"... | Determine whether a vector is aligned with a 2D axis.
@param {Object} vector
@returns {boolean} | [
"Determine",
"whether",
"a",
"vector",
"is",
"aligned",
"with",
"a",
"2D",
"axis",
"."
] | 1ef1137ea4cdea920dc312f760000e2463ef40af | https://github.com/hexus/phaser-slopes/blob/1ef1137ea4cdea920dc312f760000e2463ef40af/src/Matter/World.js#L276-L286 | train |
hexus/phaser-slopes | src/Matter/World.js | function (tilemapLayer, tiles) {
let i, layerData = tilemapLayer.layer;
// Pre-process the tiles
for (i in tiles) {
let tile = tiles[i];
tile.physics.slopes = tile.physics.slopes || {};
tile.physics.slopes = {
neighbours: {
up: GetTileAt(tile.x, tile.y - 1, true, layerData),
down... | javascript | function (tilemapLayer, tiles) {
let i, layerData = tilemapLayer.layer;
// Pre-process the tiles
for (i in tiles) {
let tile = tiles[i];
tile.physics.slopes = tile.physics.slopes || {};
tile.physics.slopes = {
neighbours: {
up: GetTileAt(tile.x, tile.y - 1, true, layerData),
down... | [
"function",
"(",
"tilemapLayer",
",",
"tiles",
")",
"{",
"let",
"i",
",",
"layerData",
"=",
"tilemapLayer",
".",
"layer",
";",
"// Pre-process the tiles",
"for",
"(",
"i",
"in",
"tiles",
")",
"{",
"let",
"tile",
"=",
"tiles",
"[",
"i",
"]",
";",
"tile"... | Process the edges of the given tiles.
@param {Phaser.Tilemaps.DynamicTilemapLayer|Phaser.Tilemaps.StaticTilemapLayer} tilemapLayer - The layer the tiles belong to.
@param {Phaser.Tilemaps.Tile[]} tiles - The tiles to process. | [
"Process",
"the",
"edges",
"of",
"the",
"given",
"tiles",
"."
] | 1ef1137ea4cdea920dc312f760000e2463ef40af | https://github.com/hexus/phaser-slopes/blob/1ef1137ea4cdea920dc312f760000e2463ef40af/src/Matter/World.js#L305-L342 | train | |
hexus/phaser-slopes | src/Matter/World.js | function (firstEdge, secondEdge) {
if (firstEdge === Constants.SOLID && secondEdge === Constants.SOLID) {
return Constants.EMPTY;
}
if (firstEdge === Constants.SOLID && secondEdge === Constants.EMPTY) {
return Constants.EMPTY;
}
return firstEdge;
} | javascript | function (firstEdge, secondEdge) {
if (firstEdge === Constants.SOLID && secondEdge === Constants.SOLID) {
return Constants.EMPTY;
}
if (firstEdge === Constants.SOLID && secondEdge === Constants.EMPTY) {
return Constants.EMPTY;
}
return firstEdge;
} | [
"function",
"(",
"firstEdge",
",",
"secondEdge",
")",
"{",
"if",
"(",
"firstEdge",
"===",
"Constants",
".",
"SOLID",
"&&",
"secondEdge",
"===",
"Constants",
".",
"SOLID",
")",
"{",
"return",
"Constants",
".",
"EMPTY",
";",
"}",
"if",
"(",
"firstEdge",
"=... | Resolve the given flags of two shared tile boundary edges.
Returns the new flag to use for the first edge after comparing it with
the second edge.
If both edges are solid, or the first is solid and second is empty, then
the empty edge flag is returned. Otherwise the first edge is returned.
This compares boundary edg... | [
"Resolve",
"the",
"given",
"flags",
"of",
"two",
"shared",
"tile",
"boundary",
"edges",
"."
] | 1ef1137ea4cdea920dc312f760000e2463ef40af | https://github.com/hexus/phaser-slopes/blob/1ef1137ea4cdea920dc312f760000e2463ef40af/src/Matter/World.js#L468-L478 | train | |
hexus/phaser-slopes | src/Matter/World.js | function (tiles) {
const maxDist = 5;
const directNeighbours = ['up', 'down', 'left', 'right'];
let t, tile, n, neighbour, i, j, tv, nv, tn, nn;
for (t = 0; t < tiles.length; t++) {
tile = tiles[t];
// Skip over irrelevant tiles
if (isIrrelevant(tile)) {
continue;
}
// Grab the ... | javascript | function (tiles) {
const maxDist = 5;
const directNeighbours = ['up', 'down', 'left', 'right'];
let t, tile, n, neighbour, i, j, tv, nv, tn, nn;
for (t = 0; t < tiles.length; t++) {
tile = tiles[t];
// Skip over irrelevant tiles
if (isIrrelevant(tile)) {
continue;
}
// Grab the ... | [
"function",
"(",
"tiles",
")",
"{",
"const",
"maxDist",
"=",
"5",
";",
"const",
"directNeighbours",
"=",
"[",
"'up'",
",",
"'down'",
",",
"'left'",
",",
"'right'",
"]",
";",
"let",
"t",
",",
"tile",
",",
"n",
",",
"neighbour",
",",
"i",
",",
"j",
... | Flag the internal edges of each tile.
Compares the edges of the given tiles with their direct neighbours and
flags those that match.
Because the polygons are represented by a set of vertices, instead of
actual edges, the first vector (assuming they are specified clockwise)
of each edge is flagged instead.
The same a... | [
"Flag",
"the",
"internal",
"edges",
"of",
"each",
"tile",
"."
] | 1ef1137ea4cdea920dc312f760000e2463ef40af | https://github.com/hexus/phaser-slopes/blob/1ef1137ea4cdea920dc312f760000e2463ef40af/src/Matter/World.js#L495-L554 | train | |
MostlyJS/mostly-node | src/extensions.js | onClientPreRequestCircuitBreaker | function onClientPreRequestCircuitBreaker (ctx, next) {
if (ctx._config.circuitBreaker.enabled) {
// any pattern represent an own circuit breaker
const circuitBreaker = ctx._circuitBreakerMap.get(ctx.trace$.method);
if (!circuitBreaker) {
const cb = new CircuitBreaker(ctx._config.circuitBreaker);
... | javascript | function onClientPreRequestCircuitBreaker (ctx, next) {
if (ctx._config.circuitBreaker.enabled) {
// any pattern represent an own circuit breaker
const circuitBreaker = ctx._circuitBreakerMap.get(ctx.trace$.method);
if (!circuitBreaker) {
const cb = new CircuitBreaker(ctx._config.circuitBreaker);
... | [
"function",
"onClientPreRequestCircuitBreaker",
"(",
"ctx",
",",
"next",
")",
"{",
"if",
"(",
"ctx",
".",
"_config",
".",
"circuitBreaker",
".",
"enabled",
")",
"{",
"// any pattern represent an own circuit breaker",
"const",
"circuitBreaker",
"=",
"ctx",
".",
"_cir... | circuit breaker on client side | [
"circuit",
"breaker",
"on",
"client",
"side"
] | 694b1d44bf089a48a183f239e90e5ca7b7b921b8 | https://github.com/MostlyJS/mostly-node/blob/694b1d44bf089a48a183f239e90e5ca7b7b921b8/src/extensions.js#L75-L96 | train |
bojand/grpc-inspect | lib/util.js | function (namespace) {
if (namespace) {
if (!this.namespaces[namespace]) {
return []
}
return _.keys(this.namespaces[namespace].services)
} else {
const r = []
_.forOwn(this.namespaces, n => r.push(..._.keys(n.services)))
return r
}
} | javascript | function (namespace) {
if (namespace) {
if (!this.namespaces[namespace]) {
return []
}
return _.keys(this.namespaces[namespace].services)
} else {
const r = []
_.forOwn(this.namespaces, n => r.push(..._.keys(n.services)))
return r
}
} | [
"function",
"(",
"namespace",
")",
"{",
"if",
"(",
"namespace",
")",
"{",
"if",
"(",
"!",
"this",
".",
"namespaces",
"[",
"namespace",
"]",
")",
"{",
"return",
"[",
"]",
"}",
"return",
"_",
".",
"keys",
"(",
"this",
".",
"namespaces",
"[",
"namespa... | Returns an array of service names
@param {String} namespace Optional name of namespace to get services.
If not present returns service names of all services within the definition.
@return {Array} array of names
@memberof descriptor
@example
const grpcinspect = require('grpc-inspect')
const grpc = require('grpc')
const ... | [
"Returns",
"an",
"array",
"of",
"service",
"names"
] | 2f4e87f1cb39cde1a1561a83435baac5c316e279 | https://github.com/bojand/grpc-inspect/blob/2f4e87f1cb39cde1a1561a83435baac5c316e279/lib/util.js#L51-L62 | train | |
bojand/grpc-inspect | lib/util.js | function (service) {
let s
const ns = _.values(this.namespaces)
if (!ns || !ns.length) {
return s
}
for (let i = 0; i < ns.length; i++) {
const n = ns[i]
if (n.services[service]) {
s = n.services[service]
break
}
}
return s
... | javascript | function (service) {
let s
const ns = _.values(this.namespaces)
if (!ns || !ns.length) {
return s
}
for (let i = 0; i < ns.length; i++) {
const n = ns[i]
if (n.services[service]) {
s = n.services[service]
break
}
}
return s
... | [
"function",
"(",
"service",
")",
"{",
"let",
"s",
"const",
"ns",
"=",
"_",
".",
"values",
"(",
"this",
".",
"namespaces",
")",
"if",
"(",
"!",
"ns",
"||",
"!",
"ns",
".",
"length",
")",
"{",
"return",
"s",
"}",
"for",
"(",
"let",
"i",
"=",
"0... | Returns the utility descriptor for the service given a servie name.
Assumes there are no duplicate service names within the definition.
@param {String} service name of the service
@return {Object} service utility descriptor
@memberof descriptor
@example
const grpcinspect = require('grpc-inspect')
const grpc = require('... | [
"Returns",
"the",
"utility",
"descriptor",
"for",
"the",
"service",
"given",
"a",
"servie",
"name",
".",
"Assumes",
"there",
"are",
"no",
"duplicate",
"service",
"names",
"within",
"the",
"definition",
"."
] | 2f4e87f1cb39cde1a1561a83435baac5c316e279 | https://github.com/bojand/grpc-inspect/blob/2f4e87f1cb39cde1a1561a83435baac5c316e279/lib/util.js#L78-L94 | train | |
nodejitsu/godot | lib/godot/reactor/has-meta.js | hasKey | function hasKey(key) {
return data.meta[key] !== undefined
&& (self.lookup[key] === null ||
self.lookup[key] === data.meta[key]);
} | javascript | function hasKey(key) {
return data.meta[key] !== undefined
&& (self.lookup[key] === null ||
self.lookup[key] === data.meta[key]);
} | [
"function",
"hasKey",
"(",
"key",
")",
"{",
"return",
"data",
".",
"meta",
"[",
"key",
"]",
"!==",
"undefined",
"&&",
"(",
"self",
".",
"lookup",
"[",
"key",
"]",
"===",
"null",
"||",
"self",
".",
"lookup",
"[",
"key",
"]",
"===",
"data",
".",
"m... | Helper function for checking a given `key`. | [
"Helper",
"function",
"for",
"checking",
"a",
"given",
"key",
"."
] | fc2397c8282ad97de17a807b2ea4498a0365e77e | https://github.com/nodejitsu/godot/blob/fc2397c8282ad97de17a807b2ea4498a0365e77e/lib/godot/reactor/has-meta.js#L83-L87 | train |
jeremyben/nunjucks-cli | index.js | render | function render(file, data, outputDir) {
if (!argv.unsafe && path.extname(file) === '.html')
return console.error(chalk.red(file + ': To use .html as source files, add --unsafe/-u flag'))
env.render(file, data, function(err, res) {
if (err) return console.error(chalk.red(err))
var outputFile = file.rep... | javascript | function render(file, data, outputDir) {
if (!argv.unsafe && path.extname(file) === '.html')
return console.error(chalk.red(file + ': To use .html as source files, add --unsafe/-u flag'))
env.render(file, data, function(err, res) {
if (err) return console.error(chalk.red(err))
var outputFile = file.rep... | [
"function",
"render",
"(",
"file",
",",
"data",
",",
"outputDir",
")",
"{",
"if",
"(",
"!",
"argv",
".",
"unsafe",
"&&",
"path",
".",
"extname",
"(",
"file",
")",
"===",
"'.html'",
")",
"return",
"console",
".",
"error",
"(",
"chalk",
".",
"red",
"... | Render one file | [
"Render",
"one",
"file"
] | 2f0319072841de394fbd204031b2f3bbd4ccf2ed | https://github.com/jeremyben/nunjucks-cli/blob/2f0319072841de394fbd204031b2f3bbd4ccf2ed/index.js#L123-L138 | train |
jeremyben/nunjucks-cli | index.js | renderAll | function renderAll(files, data, outputDir) {
for (var i = 0; i < files.length; i++) {
render(files[i], data, outputDir)
}
} | javascript | function renderAll(files, data, outputDir) {
for (var i = 0; i < files.length; i++) {
render(files[i], data, outputDir)
}
} | [
"function",
"renderAll",
"(",
"files",
",",
"data",
",",
"outputDir",
")",
"{",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"files",
".",
"length",
";",
"i",
"++",
")",
"{",
"render",
"(",
"files",
"[",
"i",
"]",
",",
"data",
",",
"outputD... | Render multiple files | [
"Render",
"multiple",
"files"
] | 2f0319072841de394fbd204031b2f3bbd4ccf2ed | https://github.com/jeremyben/nunjucks-cli/blob/2f0319072841de394fbd204031b2f3bbd4ccf2ed/index.js#L141-L147 | train |
jonschlinkert/yarn-api | index.js | yarn | function yarn(cmds, args, cb) {
if (typeof args === 'function') {
return yarn(cmds, [], args);
}
args = arrayify(cmds).concat(arrayify(args));
spawn('yarn', args, {cwd: cwd, stdio: 'inherit'})
.on('error', cb)
.on('close', function(code, err) {
cb(err, code);
});
} | javascript | function yarn(cmds, args, cb) {
if (typeof args === 'function') {
return yarn(cmds, [], args);
}
args = arrayify(cmds).concat(arrayify(args));
spawn('yarn', args, {cwd: cwd, stdio: 'inherit'})
.on('error', cb)
.on('close', function(code, err) {
cb(err, code);
});
} | [
"function",
"yarn",
"(",
"cmds",
",",
"args",
",",
"cb",
")",
"{",
"if",
"(",
"typeof",
"args",
"===",
"'function'",
")",
"{",
"return",
"yarn",
"(",
"cmds",
",",
"[",
"]",
",",
"args",
")",
";",
"}",
"args",
"=",
"arrayify",
"(",
"cmds",
")",
... | Run `yarn` with the given `cmds`, `args` and callback.
```js
yarn(['add', 'isobject'], function(err) {
if (err) throw err;
});
```
@param {String|Array} `cmds`
@param {String|Array} `args`
@param {Function} `cb` Callback
@details false
@api public | [
"Run",
"yarn",
"with",
"the",
"given",
"cmds",
"args",
"and",
"callback",
"."
] | d3ef806233844fc95afc1b6755bceb1941033387 | https://github.com/jonschlinkert/yarn-api/blob/d3ef806233844fc95afc1b6755bceb1941033387/index.js#L33-L44 | train |
jonschlinkert/yarn-api | index.js | deps | function deps(type, flags, names, cb) {
names = flatten([].slice.call(arguments, 2));
cb = names.pop();
if (type && names.length === 0) {
names = keys(type);
}
if (!names.length) {
cb();
return;
}
yarn.add(arrayify(flags).concat(names), cb);
} | javascript | function deps(type, flags, names, cb) {
names = flatten([].slice.call(arguments, 2));
cb = names.pop();
if (type && names.length === 0) {
names = keys(type);
}
if (!names.length) {
cb();
return;
}
yarn.add(arrayify(flags).concat(names), cb);
} | [
"function",
"deps",
"(",
"type",
",",
"flags",
",",
"names",
",",
"cb",
")",
"{",
"names",
"=",
"flatten",
"(",
"[",
"]",
".",
"slice",
".",
"call",
"(",
"arguments",
",",
"2",
")",
")",
";",
"cb",
"=",
"names",
".",
"pop",
"(",
")",
";",
"if... | Install the given `type` of dependencies,
with the specified `flags` | [
"Install",
"the",
"given",
"type",
"of",
"dependencies",
"with",
"the",
"specified",
"flags"
] | d3ef806233844fc95afc1b6755bceb1941033387 | https://github.com/jonschlinkert/yarn-api/blob/d3ef806233844fc95afc1b6755bceb1941033387/index.js#L298-L312 | train |
BorisKozo/node-async-locks | lib/async-lock.js | function (options) {
this.queue = [];
this.ownerTokenId = null;
this.options = _.extend({}, AsyncLock.defaultOptions, options);
} | javascript | function (options) {
this.queue = [];
this.ownerTokenId = null;
this.options = _.extend({}, AsyncLock.defaultOptions, options);
} | [
"function",
"(",
"options",
")",
"{",
"this",
".",
"queue",
"=",
"[",
"]",
";",
"this",
".",
"ownerTokenId",
"=",
"null",
";",
"this",
".",
"options",
"=",
"_",
".",
"extend",
"(",
"{",
"}",
",",
"AsyncLock",
".",
"defaultOptions",
",",
"options",
... | An asynchronous lock.
@constructor
@param {object} options - optional set of options for this lock | [
"An",
"asynchronous",
"lock",
"."
] | ba0e5c998a06612527d510233d179b123129f84a | https://github.com/BorisKozo/node-async-locks/blob/ba0e5c998a06612527d510233d179b123129f84a/lib/async-lock.js#L22-L26 | train | |
Jeff2Ma/postcss-lazysprite | index.js | applyGroupBy | function applyGroupBy(images, options) {
return Promise.reduce(options.groupBy, function (images, group) {
return Promise.map(images, function (image) {
return Promise.resolve(group(image)).then(function (group) {
if (group) {
image.groups.push(group);
}
return image;
}).catch(function (image)... | javascript | function applyGroupBy(images, options) {
return Promise.reduce(options.groupBy, function (images, group) {
return Promise.map(images, function (image) {
return Promise.resolve(group(image)).then(function (group) {
if (group) {
image.groups.push(group);
}
return image;
}).catch(function (image)... | [
"function",
"applyGroupBy",
"(",
"images",
",",
"options",
")",
"{",
"return",
"Promise",
".",
"reduce",
"(",
"options",
".",
"groupBy",
",",
"function",
"(",
"images",
",",
"group",
")",
"{",
"return",
"Promise",
".",
"map",
"(",
"images",
",",
"functio... | Apply groupBy functions over collection of exported images.
@param {Object} options
@param {Array} images
@return {Promise} | [
"Apply",
"groupBy",
"functions",
"over",
"collection",
"of",
"exported",
"images",
"."
] | 96725425a6d67fdb0c79ce476c33af55337aea9b | https://github.com/Jeff2Ma/postcss-lazysprite/blob/96725425a6d67fdb0c79ce476c33af55337aea9b/index.js#L260-L275 | train |
Jeff2Ma/postcss-lazysprite | index.js | setTokens | function setTokens(images, options, css) {
return new Promise(function (resolve) {
css.walkAtRules('lazysprite', function (atRule) {
// Get the directory of images from atRule value
var params = space(atRule.params);
var atRuleValue = getAtRuleValue(params);
var sliceDir = atRuleValue[0];
var sliceDir... | javascript | function setTokens(images, options, css) {
return new Promise(function (resolve) {
css.walkAtRules('lazysprite', function (atRule) {
// Get the directory of images from atRule value
var params = space(atRule.params);
var atRuleValue = getAtRuleValue(params);
var sliceDir = atRuleValue[0];
var sliceDir... | [
"function",
"setTokens",
"(",
"images",
",",
"options",
",",
"css",
")",
"{",
"return",
"new",
"Promise",
"(",
"function",
"(",
"resolve",
")",
"{",
"css",
".",
"walkAtRules",
"(",
"'lazysprite'",
",",
"function",
"(",
"atRule",
")",
"{",
"// Get the direc... | Set the necessary tokens info to the background declarations.
@param {Node} css
@param {Object} options
@param {Array} images
@return {Promise} | [
"Set",
"the",
"necessary",
"tokens",
"info",
"to",
"the",
"background",
"declarations",
"."
] | 96725425a6d67fdb0c79ce476c33af55337aea9b | https://github.com/Jeff2Ma/postcss-lazysprite/blob/96725425a6d67fdb0c79ce476c33af55337aea9b/index.js#L284-L368 | train |
Jeff2Ma/postcss-lazysprite | index.js | saveSprites | function saveSprites(images, options, sprites) {
return new Promise(function (resolve, reject) {
if (!fs.existsSync(options.spritePath)) {
mkdirp.sync(options.spritePath);
}
var all = _
.chain(sprites)
.map(function (sprite) {
sprite.path = makeSpritePath(options, sprite.groups);
var deferred =... | javascript | function saveSprites(images, options, sprites) {
return new Promise(function (resolve, reject) {
if (!fs.existsSync(options.spritePath)) {
mkdirp.sync(options.spritePath);
}
var all = _
.chain(sprites)
.map(function (sprite) {
sprite.path = makeSpritePath(options, sprite.groups);
var deferred =... | [
"function",
"saveSprites",
"(",
"images",
",",
"options",
",",
"sprites",
")",
"{",
"return",
"new",
"Promise",
"(",
"function",
"(",
"resolve",
",",
"reject",
")",
"{",
"if",
"(",
"!",
"fs",
".",
"existsSync",
"(",
"options",
".",
"spritePath",
")",
"... | Save the sprites to the target path.
@param {Object} options
@param {Array} images
@param {Array} sprites
@return {Promise} | [
"Save",
"the",
"sprites",
"to",
"the",
"target",
"path",
"."
] | 96725425a6d67fdb0c79ce476c33af55337aea9b | https://github.com/Jeff2Ma/postcss-lazysprite/blob/96725425a6d67fdb0c79ce476c33af55337aea9b/index.js#L525-L563 | train |
Jeff2Ma/postcss-lazysprite | index.js | mapSpritesProperties | function mapSpritesProperties(images, options, sprites) {
return new Promise(function (resolve) {
sprites = _.map(sprites, function (sprite) {
return _.map(sprite.coordinates, function (coordinates, imagePath) {
return _.merge(_.find(images, {path: imagePath}), {
coordinates: coordinates,
spritePath... | javascript | function mapSpritesProperties(images, options, sprites) {
return new Promise(function (resolve) {
sprites = _.map(sprites, function (sprite) {
return _.map(sprite.coordinates, function (coordinates, imagePath) {
return _.merge(_.find(images, {path: imagePath}), {
coordinates: coordinates,
spritePath... | [
"function",
"mapSpritesProperties",
"(",
"images",
",",
"options",
",",
"sprites",
")",
"{",
"return",
"new",
"Promise",
"(",
"function",
"(",
"resolve",
")",
"{",
"sprites",
"=",
"_",
".",
"map",
"(",
"sprites",
",",
"function",
"(",
"sprite",
")",
"{",... | Map sprites props for every image.
@param {Object} options
@param {Array} images
@param {Array} sprites
@return {Promise} | [
"Map",
"sprites",
"props",
"for",
"every",
"image",
"."
] | 96725425a6d67fdb0c79ce476c33af55337aea9b | https://github.com/Jeff2Ma/postcss-lazysprite/blob/96725425a6d67fdb0c79ce476c33af55337aea9b/index.js#L572-L585 | train |
Jeff2Ma/postcss-lazysprite | index.js | updateReferences | function updateReferences(images, options, sprites, css) {
return new Promise(function (resolve) {
css.walkComments(function (comment) {
var rule, image, backgroundImage, backgroundPosition, backgroundSize;
// Manipulate only token comments
if (isToken(comment)) {
// Match from the path with the tokens ... | javascript | function updateReferences(images, options, sprites, css) {
return new Promise(function (resolve) {
css.walkComments(function (comment) {
var rule, image, backgroundImage, backgroundPosition, backgroundSize;
// Manipulate only token comments
if (isToken(comment)) {
// Match from the path with the tokens ... | [
"function",
"updateReferences",
"(",
"images",
",",
"options",
",",
"sprites",
",",
"css",
")",
"{",
"return",
"new",
"Promise",
"(",
"function",
"(",
"resolve",
")",
"{",
"css",
".",
"walkComments",
"(",
"function",
"(",
"comment",
")",
"{",
"var",
"rul... | Updates the CSS references from the token info.
@param {Node} css
@param {Object} options
@param {Array} images
@param {Array} sprites
@return {Promise} | [
"Updates",
"the",
"CSS",
"references",
"from",
"the",
"token",
"info",
"."
] | 96725425a6d67fdb0c79ce476c33af55337aea9b | https://github.com/Jeff2Ma/postcss-lazysprite/blob/96725425a6d67fdb0c79ce476c33af55337aea9b/index.js#L595-L661 | train |
Jeff2Ma/postcss-lazysprite | index.js | makeSpritePath | function makeSpritePath(options, groups) {
var base = options.spritePath;
var file;
// If is svg, do st
if (groups.indexOf('GROUP_SVG_FLAG') > -1) {
groups = _.filter(groups, function (item) {
return item !== 'GROUP_SVG_FLAG';
});
file = path.resolve(base, groups.join('.') + '.svg');
} else {
file = pa... | javascript | function makeSpritePath(options, groups) {
var base = options.spritePath;
var file;
// If is svg, do st
if (groups.indexOf('GROUP_SVG_FLAG') > -1) {
groups = _.filter(groups, function (item) {
return item !== 'GROUP_SVG_FLAG';
});
file = path.resolve(base, groups.join('.') + '.svg');
} else {
file = pa... | [
"function",
"makeSpritePath",
"(",
"options",
",",
"groups",
")",
"{",
"var",
"base",
"=",
"options",
".",
"spritePath",
";",
"var",
"file",
";",
"// If is svg, do st",
"if",
"(",
"groups",
".",
"indexOf",
"(",
"'GROUP_SVG_FLAG'",
")",
">",
"-",
"1",
")",
... | Set the sprite file name form groups. | [
"Set",
"the",
"sprite",
"file",
"name",
"form",
"groups",
"."
] | 96725425a6d67fdb0c79ce476c33af55337aea9b | https://github.com/Jeff2Ma/postcss-lazysprite/blob/96725425a6d67fdb0c79ce476c33af55337aea9b/index.js#L703-L718 | train |
Jeff2Ma/postcss-lazysprite | index.js | getBackgroundPosition | function getBackgroundPosition(image) {
var logicValue = image.isSVG ? 1 : -1;
var x = logicValue * (image.ratio > 1 ? image.coordinates.x / image.ratio : image.coordinates.x);
var y = logicValue * (image.ratio > 1 ? image.coordinates.y / image.ratio : image.coordinates.y);
var template = _.template('<%= (x ? x + "... | javascript | function getBackgroundPosition(image) {
var logicValue = image.isSVG ? 1 : -1;
var x = logicValue * (image.ratio > 1 ? image.coordinates.x / image.ratio : image.coordinates.x);
var y = logicValue * (image.ratio > 1 ? image.coordinates.y / image.ratio : image.coordinates.y);
var template = _.template('<%= (x ? x + "... | [
"function",
"getBackgroundPosition",
"(",
"image",
")",
"{",
"var",
"logicValue",
"=",
"image",
".",
"isSVG",
"?",
"1",
":",
"-",
"1",
";",
"var",
"x",
"=",
"logicValue",
"*",
"(",
"image",
".",
"ratio",
">",
"1",
"?",
"image",
".",
"coordinates",
".... | Return the value for background-position property | [
"Return",
"the",
"value",
"for",
"background",
"-",
"position",
"property"
] | 96725425a6d67fdb0c79ce476c33af55337aea9b | https://github.com/Jeff2Ma/postcss-lazysprite/blob/96725425a6d67fdb0c79ce476c33af55337aea9b/index.js#L741-L747 | train |
Jeff2Ma/postcss-lazysprite | index.js | getBackgroundPositionInPercent | function getBackgroundPositionInPercent(image) {
var x = 100 * (image.coordinates.x) / (image.properties.width - image.coordinates.width);
var y = 100 * (image.coordinates.y) / (image.properties.height - image.coordinates.height);
var template = _.template('<%= (x ? x + "%" : x) %> <%= (y ? y + "%" : y) %>');
retur... | javascript | function getBackgroundPositionInPercent(image) {
var x = 100 * (image.coordinates.x) / (image.properties.width - image.coordinates.width);
var y = 100 * (image.coordinates.y) / (image.properties.height - image.coordinates.height);
var template = _.template('<%= (x ? x + "%" : x) %> <%= (y ? y + "%" : y) %>');
retur... | [
"function",
"getBackgroundPositionInPercent",
"(",
"image",
")",
"{",
"var",
"x",
"=",
"100",
"*",
"(",
"image",
".",
"coordinates",
".",
"x",
")",
"/",
"(",
"image",
".",
"properties",
".",
"width",
"-",
"image",
".",
"coordinates",
".",
"width",
")",
... | Return the pencentage value for background-position property | [
"Return",
"the",
"pencentage",
"value",
"for",
"background",
"-",
"position",
"property"
] | 96725425a6d67fdb0c79ce476c33af55337aea9b | https://github.com/Jeff2Ma/postcss-lazysprite/blob/96725425a6d67fdb0c79ce476c33af55337aea9b/index.js#L750-L755 | train |
Jeff2Ma/postcss-lazysprite | index.js | getBackgroundSize | function getBackgroundSize(image) {
var x = image.properties.width / image.ratio;
var y = image.properties.height / image.ratio;
var template = _.template('<%= x %>px <%= y %>px');
return template({x: x, y: y});
} | javascript | function getBackgroundSize(image) {
var x = image.properties.width / image.ratio;
var y = image.properties.height / image.ratio;
var template = _.template('<%= x %>px <%= y %>px');
return template({x: x, y: y});
} | [
"function",
"getBackgroundSize",
"(",
"image",
")",
"{",
"var",
"x",
"=",
"image",
".",
"properties",
".",
"width",
"/",
"image",
".",
"ratio",
";",
"var",
"y",
"=",
"image",
".",
"properties",
".",
"height",
"/",
"image",
".",
"ratio",
";",
"var",
"... | Return the value for background-size property. | [
"Return",
"the",
"value",
"for",
"background",
"-",
"size",
"property",
"."
] | 96725425a6d67fdb0c79ce476c33af55337aea9b | https://github.com/Jeff2Ma/postcss-lazysprite/blob/96725425a6d67fdb0c79ce476c33af55337aea9b/index.js#L758-L764 | train |
Jeff2Ma/postcss-lazysprite | index.js | getRetinaRatio | function getRetinaRatio(url) {
var matches = /[@_](\d)x\.[a-z]{3,4}$/gi.exec(url);
if (!matches) {
return 1;
}
var ratio = _.parseInt(matches[1]);
return ratio;
} | javascript | function getRetinaRatio(url) {
var matches = /[@_](\d)x\.[a-z]{3,4}$/gi.exec(url);
if (!matches) {
return 1;
}
var ratio = _.parseInt(matches[1]);
return ratio;
} | [
"function",
"getRetinaRatio",
"(",
"url",
")",
"{",
"var",
"matches",
"=",
"/",
"[@_](\\d)x\\.[a-z]{3,4}$",
"/",
"gi",
".",
"exec",
"(",
"url",
")",
";",
"if",
"(",
"!",
"matches",
")",
"{",
"return",
"1",
";",
"}",
"var",
"ratio",
"=",
"_",
".",
"... | Return the value of retina ratio. | [
"Return",
"the",
"value",
"of",
"retina",
"ratio",
"."
] | 96725425a6d67fdb0c79ce476c33af55337aea9b | https://github.com/Jeff2Ma/postcss-lazysprite/blob/96725425a6d67fdb0c79ce476c33af55337aea9b/index.js#L785-L792 | train |
Jeff2Ma/postcss-lazysprite | index.js | log | function log(logLevel, level, content) {
var output = true;
switch (logLevel) {
case 'slient':
if (level !== 'lv1') {
output = false;
}
break;
case 'info':
if (level === 'lv3') {
output = false;
}
break;
default:
output = true;
}
if (output) {
var data = Array.prototype.slice.call(content)... | javascript | function log(logLevel, level, content) {
var output = true;
switch (logLevel) {
case 'slient':
if (level !== 'lv1') {
output = false;
}
break;
case 'info':
if (level === 'lv3') {
output = false;
}
break;
default:
output = true;
}
if (output) {
var data = Array.prototype.slice.call(content)... | [
"function",
"log",
"(",
"logLevel",
",",
"level",
",",
"content",
")",
"{",
"var",
"output",
"=",
"true",
";",
"switch",
"(",
"logLevel",
")",
"{",
"case",
"'slient'",
":",
"if",
"(",
"level",
"!==",
"'lv1'",
")",
"{",
"output",
"=",
"false",
";",
... | Log with same stylesheet and level control. | [
"Log",
"with",
"same",
"stylesheet",
"and",
"level",
"control",
"."
] | 96725425a6d67fdb0c79ce476c33af55337aea9b | https://github.com/Jeff2Ma/postcss-lazysprite/blob/96725425a6d67fdb0c79ce476c33af55337aea9b/index.js#L811-L832 | train |
Jeff2Ma/postcss-lazysprite | index.js | debug | function debug() {
var data = Array.prototype.slice.call(arguments);
fancyLog.apply(false, data);
} | javascript | function debug() {
var data = Array.prototype.slice.call(arguments);
fancyLog.apply(false, data);
} | [
"function",
"debug",
"(",
")",
"{",
"var",
"data",
"=",
"Array",
".",
"prototype",
".",
"slice",
".",
"call",
"(",
"arguments",
")",
";",
"fancyLog",
".",
"apply",
"(",
"false",
",",
"data",
")",
";",
"}"
] | Log for debug | [
"Log",
"for",
"debug"
] | 96725425a6d67fdb0c79ce476c33af55337aea9b | https://github.com/Jeff2Ma/postcss-lazysprite/blob/96725425a6d67fdb0c79ce476c33af55337aea9b/index.js#L835-L838 | train |
twolfson/gmsmith | lib/engine.js | Gmsmith | function Gmsmith(options) {
options = options || {};
this.gm = _gm;
var useImageMagick = options.hasOwnProperty('imagemagick') ? options.imagemagick : !gmExists;
if (useImageMagick) {
this.gm = _gm.subClass({imageMagick: true});
}
} | javascript | function Gmsmith(options) {
options = options || {};
this.gm = _gm;
var useImageMagick = options.hasOwnProperty('imagemagick') ? options.imagemagick : !gmExists;
if (useImageMagick) {
this.gm = _gm.subClass({imageMagick: true});
}
} | [
"function",
"Gmsmith",
"(",
"options",
")",
"{",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"this",
".",
"gm",
"=",
"_gm",
";",
"var",
"useImageMagick",
"=",
"options",
".",
"hasOwnProperty",
"(",
"'imagemagick'",
")",
"?",
"options",
".",
"imagemag... | Define our engine constructor | [
"Define",
"our",
"engine",
"constructor"
] | 2bc44e50a9b562691745f5cb5261e85debeefd7e | https://github.com/twolfson/gmsmith/blob/2bc44e50a9b562691745f5cb5261e85debeefd7e/lib/engine.js#L16-L23 | train |
MatteoGabriele/storage-helper | dist/storage-helper.js | setItem | function setItem(key, value) {
storage[key] = typeof value === 'string' ? value : JSON.stringify(value);
} | javascript | function setItem(key, value) {
storage[key] = typeof value === 'string' ? value : JSON.stringify(value);
} | [
"function",
"setItem",
"(",
"key",
",",
"value",
")",
"{",
"storage",
"[",
"key",
"]",
"=",
"typeof",
"value",
"===",
"'string'",
"?",
"value",
":",
"JSON",
".",
"stringify",
"(",
"value",
")",
";",
"}"
] | Add item in out session storage
@param {String} key
@param {String} value | [
"Add",
"item",
"in",
"out",
"session",
"storage"
] | 72d4e773811cf52091019aa98f2990c0eb7546e4 | https://github.com/MatteoGabriele/storage-helper/blob/72d4e773811cf52091019aa98f2990c0eb7546e4/dist/storage-helper.js#L27-L29 | train |
MatteoGabriele/storage-helper | dist/storage-helper.js | log | function log(text) {
var type = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'success';
var debug$$1 = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
if (!debug$$1) {
return;
}
var success = 'padding: 2px; background: #219621; color: #ffffff';
var war... | javascript | function log(text) {
var type = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'success';
var debug$$1 = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
if (!debug$$1) {
return;
}
var success = 'padding: 2px; background: #219621; color: #ffffff';
var war... | [
"function",
"log",
"(",
"text",
")",
"{",
"var",
"type",
"=",
"arguments",
".",
"length",
">",
"1",
"&&",
"arguments",
"[",
"1",
"]",
"!==",
"undefined",
"?",
"arguments",
"[",
"1",
"]",
":",
"'success'",
";",
"var",
"debug$$1",
"=",
"arguments",
"."... | Logger for different type of messages.
@param {String} text
@param {String} [type='success'] | [
"Logger",
"for",
"different",
"type",
"of",
"messages",
"."
] | 72d4e773811cf52091019aa98f2990c0eb7546e4 | https://github.com/MatteoGabriele/storage-helper/blob/72d4e773811cf52091019aa98f2990c0eb7546e4/dist/storage-helper.js#L77-L91 | train |
MatteoGabriele/storage-helper | dist/storage-helper.js | parse | function parse(data) {
try {
return JSON.parse(data);
} catch (e) {
log('Oops! Some problems parsing this ' + (typeof data === 'undefined' ? 'undefined' : _typeof(data)) + '.', 'error', debug);
}
return null;
} | javascript | function parse(data) {
try {
return JSON.parse(data);
} catch (e) {
log('Oops! Some problems parsing this ' + (typeof data === 'undefined' ? 'undefined' : _typeof(data)) + '.', 'error', debug);
}
return null;
} | [
"function",
"parse",
"(",
"data",
")",
"{",
"try",
"{",
"return",
"JSON",
".",
"parse",
"(",
"data",
")",
";",
"}",
"catch",
"(",
"e",
")",
"{",
"log",
"(",
"'Oops! Some problems parsing this '",
"+",
"(",
"typeof",
"data",
"===",
"'undefined'",
"?",
"... | JSON parse with error
@param {String} data
@return {String|null} | [
"JSON",
"parse",
"with",
"error"
] | 72d4e773811cf52091019aa98f2990c0eb7546e4 | https://github.com/MatteoGabriele/storage-helper/blob/72d4e773811cf52091019aa98f2990c0eb7546e4/dist/storage-helper.js#L98-L106 | train |
MatteoGabriele/storage-helper | dist/storage-helper.js | setItem | function setItem(key, value) {
var expires = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
if (!isCookieEnabled) {
session.setItem(key, value);
log('I\'ve saved "' + key + '" in a plain object :)', 'warning', debug);
return;
}
cookie.set(key, value, { expires: expires });
... | javascript | function setItem(key, value) {
var expires = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
if (!isCookieEnabled) {
session.setItem(key, value);
log('I\'ve saved "' + key + '" in a plain object :)', 'warning', debug);
return;
}
cookie.set(key, value, { expires: expires });
... | [
"function",
"setItem",
"(",
"key",
",",
"value",
")",
"{",
"var",
"expires",
"=",
"arguments",
".",
"length",
">",
"2",
"&&",
"arguments",
"[",
"2",
"]",
"!==",
"undefined",
"?",
"arguments",
"[",
"2",
"]",
":",
"1",
";",
"if",
"(",
"!",
"isCookieE... | Set the item in the cookies if possible, otherwise is going to store it
inside a plain object
@param {String} key
@param {String} value
@param {Number} [expires=1] | [
"Set",
"the",
"item",
"in",
"the",
"cookies",
"if",
"possible",
"otherwise",
"is",
"going",
"to",
"store",
"it",
"inside",
"a",
"plain",
"object"
] | 72d4e773811cf52091019aa98f2990c0eb7546e4 | https://github.com/MatteoGabriele/storage-helper/blob/72d4e773811cf52091019aa98f2990c0eb7546e4/dist/storage-helper.js#L130-L141 | train |
MatteoGabriele/storage-helper | dist/storage-helper.js | clear | function clear() {
var cookies = isBrowser && document.cookie.split(';');
if (!cookies.length) {
return;
}
for (var i = 0, l = cookies.length; i < l; i++) {
var item = cookies[i];
var key = item.split('=')[0];
cookie.remove(key);
}
} | javascript | function clear() {
var cookies = isBrowser && document.cookie.split(';');
if (!cookies.length) {
return;
}
for (var i = 0, l = cookies.length; i < l; i++) {
var item = cookies[i];
var key = item.split('=')[0];
cookie.remove(key);
}
} | [
"function",
"clear",
"(",
")",
"{",
"var",
"cookies",
"=",
"isBrowser",
"&&",
"document",
".",
"cookie",
".",
"split",
"(",
"';'",
")",
";",
"if",
"(",
"!",
"cookies",
".",
"length",
")",
"{",
"return",
";",
"}",
"for",
"(",
"var",
"i",
"=",
"0",... | Remove all cookies | [
"Remove",
"all",
"cookies"
] | 72d4e773811cf52091019aa98f2990c0eb7546e4 | https://github.com/MatteoGabriele/storage-helper/blob/72d4e773811cf52091019aa98f2990c0eb7546e4/dist/storage-helper.js#L163-L176 | train |
MatteoGabriele/storage-helper | dist/storage-helper.js | hasLocalStorage | function hasLocalStorage() {
if (!localstorage) {
return false;
}
try {
localstorage.setItem('0', '');
localstorage.removeItem('0');
return true;
} catch (error) {
return false;
}
} | javascript | function hasLocalStorage() {
if (!localstorage) {
return false;
}
try {
localstorage.setItem('0', '');
localstorage.removeItem('0');
return true;
} catch (error) {
return false;
}
} | [
"function",
"hasLocalStorage",
"(",
")",
"{",
"if",
"(",
"!",
"localstorage",
")",
"{",
"return",
"false",
";",
"}",
"try",
"{",
"localstorage",
".",
"setItem",
"(",
"'0'",
",",
"''",
")",
";",
"localstorage",
".",
"removeItem",
"(",
"'0'",
")",
";",
... | Check if the browser has localStorage
@return {Boolean} | [
"Check",
"if",
"the",
"browser",
"has",
"localStorage"
] | 72d4e773811cf52091019aa98f2990c0eb7546e4 | https://github.com/MatteoGabriele/storage-helper/blob/72d4e773811cf52091019aa98f2990c0eb7546e4/dist/storage-helper.js#L192-L204 | train |
MatteoGabriele/storage-helper | dist/storage-helper.js | getItem | function getItem(key) {
var parsed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
var fallbackValue = arguments[2];
var result = void 0;
var cookieItem = cookie$1.getItem(key);
var sessionItem = session.getItem(key);
if (!hasLocalStorage()) {
result = cookieItem || sessi... | javascript | function getItem(key) {
var parsed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
var fallbackValue = arguments[2];
var result = void 0;
var cookieItem = cookie$1.getItem(key);
var sessionItem = session.getItem(key);
if (!hasLocalStorage()) {
result = cookieItem || sessi... | [
"function",
"getItem",
"(",
"key",
")",
"{",
"var",
"parsed",
"=",
"arguments",
".",
"length",
">",
"1",
"&&",
"arguments",
"[",
"1",
"]",
"!==",
"undefined",
"?",
"arguments",
"[",
"1",
"]",
":",
"false",
";",
"var",
"fallbackValue",
"=",
"arguments",... | Get the item
Here the object is taken from the localStorage, if it was available, or from the object
@param {String} key
@param {Boolean} [parsed=false]
@return {any} | [
"Get",
"the",
"item",
"Here",
"the",
"object",
"is",
"taken",
"from",
"the",
"localStorage",
"if",
"it",
"was",
"available",
"or",
"from",
"the",
"object"
] | 72d4e773811cf52091019aa98f2990c0eb7546e4 | https://github.com/MatteoGabriele/storage-helper/blob/72d4e773811cf52091019aa98f2990c0eb7546e4/dist/storage-helper.js#L255-L277 | train |
MatteoGabriele/storage-helper | dist/storage-helper.js | removeItem | function removeItem(key) {
cookie$1.removeItem(key);
session.removeItem(key);
if (!hasLocalStorage()) {
return;
}
localstorage.removeItem(key);
} | javascript | function removeItem(key) {
cookie$1.removeItem(key);
session.removeItem(key);
if (!hasLocalStorage()) {
return;
}
localstorage.removeItem(key);
} | [
"function",
"removeItem",
"(",
"key",
")",
"{",
"cookie$1",
".",
"removeItem",
"(",
"key",
")",
";",
"session",
".",
"removeItem",
"(",
"key",
")",
";",
"if",
"(",
"!",
"hasLocalStorage",
"(",
")",
")",
"{",
"return",
";",
"}",
"localstorage",
".",
"... | Remove a single item from the storage
@param {String} key | [
"Remove",
"a",
"single",
"item",
"from",
"the",
"storage"
] | 72d4e773811cf52091019aa98f2990c0eb7546e4 | https://github.com/MatteoGabriele/storage-helper/blob/72d4e773811cf52091019aa98f2990c0eb7546e4/dist/storage-helper.js#L297-L306 | train |
kaola-fed/foxman | packages/foxman-plugin-server/lib/client/js/builtin/eventbus.js | off | function off(type, handler) {
if (all[type]) {
all[type].splice(all[type].indexOf(handler) >>> 0, 1);
}
} | javascript | function off(type, handler) {
if (all[type]) {
all[type].splice(all[type].indexOf(handler) >>> 0, 1);
}
} | [
"function",
"off",
"(",
"type",
",",
"handler",
")",
"{",
"if",
"(",
"all",
"[",
"type",
"]",
")",
"{",
"all",
"[",
"type",
"]",
".",
"splice",
"(",
"all",
"[",
"type",
"]",
".",
"indexOf",
"(",
"handler",
")",
">>>",
"0",
",",
"1",
")",
";",... | Remove an event handler for the given type.
@param {String} type Type of event to unregister `handler` from, or `"*"`
@param {Function} handler Handler function to remove
@memberOf mitt | [
"Remove",
"an",
"event",
"handler",
"for",
"the",
"given",
"type",
"."
] | e444c0908fabbfe49908ae4ccc3d6619a22dec57 | https://github.com/kaola-fed/foxman/blob/e444c0908fabbfe49908ae4ccc3d6619a22dec57/packages/foxman-plugin-server/lib/client/js/builtin/eventbus.js#L41-L45 | train |
nodejitsu/godot | lib/godot/net/client.js | defaultify | function defaultify (obj) {
return Object.keys(self.defaults).reduce(function (acc, key) {
if (!acc[key]) { acc[key] = self.defaults[key] }
return acc;
}, obj);
} | javascript | function defaultify (obj) {
return Object.keys(self.defaults).reduce(function (acc, key) {
if (!acc[key]) { acc[key] = self.defaults[key] }
return acc;
}, obj);
} | [
"function",
"defaultify",
"(",
"obj",
")",
"{",
"return",
"Object",
".",
"keys",
"(",
"self",
".",
"defaults",
")",
".",
"reduce",
"(",
"function",
"(",
"acc",
",",
"key",
")",
"{",
"if",
"(",
"!",
"acc",
"[",
"key",
"]",
")",
"{",
"acc",
"[",
... | Add defaults to each object where a value does not already exist | [
"Add",
"defaults",
"to",
"each",
"object",
"where",
"a",
"value",
"does",
"not",
"already",
"exist"
] | fc2397c8282ad97de17a807b2ea4498a0365e77e | https://github.com/nodejitsu/godot/blob/fc2397c8282ad97de17a807b2ea4498a0365e77e/lib/godot/net/client.js#L151-L156 | 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.