id int32 0 58k | 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
3,400 | aws/aws-sdk-js | lib/polly/presigner.js | Signer | function Signer(options) {
options = options || {};
this.options = options;
this.service = options.service;
this.bindServiceObject(options);
this._operations = {};
} | javascript | function Signer(options) {
options = options || {};
this.options = options;
this.service = options.service;
this.bindServiceObject(options);
this._operations = {};
} | [
"function",
"Signer",
"(",
"options",
")",
"{",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"this",
".",
"options",
"=",
"options",
";",
"this",
".",
"service",
"=",
"options",
".",
"service",
";",
"this",
".",
"bindServiceObject",
"(",
"options",
... | Creates a presigner object with a set of configuration options.
@option options params [map] An optional map of parameters to bind to every
request sent by this service object.
@option options service [AWS.Polly] An optional pre-configured instance
of the AWS.Polly service object to use for requests. The object may
bo... | [
"Creates",
"a",
"presigner",
"object",
"with",
"a",
"set",
"of",
"configuration",
"options",
"."
] | c23e5f0edd150f8885267e5f7c8a564f8e6e8562 | https://github.com/aws/aws-sdk-js/blob/c23e5f0edd150f8885267e5f7c8a564f8e6e8562/lib/polly/presigner.js#L18-L24 |
3,401 | aws/aws-sdk-js | scripts/lib/remove-event-stream-ops.js | removeEventStreamOperations | function removeEventStreamOperations(model) {
var modifiedModel = false;
// loop over all operations
var operations = model.operations;
var operationNames = Object.keys(operations);
for (var i = 0; i < operationNames.length; i++) {
var operationName = operationNames[i];
var operation... | javascript | function removeEventStreamOperations(model) {
var modifiedModel = false;
// loop over all operations
var operations = model.operations;
var operationNames = Object.keys(operations);
for (var i = 0; i < operationNames.length; i++) {
var operationName = operationNames[i];
var operation... | [
"function",
"removeEventStreamOperations",
"(",
"model",
")",
"{",
"var",
"modifiedModel",
"=",
"false",
";",
"// loop over all operations",
"var",
"operations",
"=",
"model",
".",
"operations",
";",
"var",
"operationNames",
"=",
"Object",
".",
"keys",
"(",
"opera... | Removes operations from the model if they require event streams.
Specifically looks at input and output shapes.
@param {Object} model - JSON parsed API model (*.normal.json) | [
"Removes",
"operations",
"from",
"the",
"model",
"if",
"they",
"require",
"event",
"streams",
".",
"Specifically",
"looks",
"at",
"input",
"and",
"output",
"shapes",
"."
] | c23e5f0edd150f8885267e5f7c8a564f8e6e8562 | https://github.com/aws/aws-sdk-js/blob/c23e5f0edd150f8885267e5f7c8a564f8e6e8562/scripts/lib/remove-event-stream-ops.js#L6-L31 |
3,402 | aws/aws-sdk-js | lib/publisher/string-to-buffer.js | stringToBuffer | function stringToBuffer(data) {
return (typeof Buffer.from === 'function' && Buffer.from !== Uint8Array.from) ?
Buffer.from(data) : new Buffer(data);
} | javascript | function stringToBuffer(data) {
return (typeof Buffer.from === 'function' && Buffer.from !== Uint8Array.from) ?
Buffer.from(data) : new Buffer(data);
} | [
"function",
"stringToBuffer",
"(",
"data",
")",
"{",
"return",
"(",
"typeof",
"Buffer",
".",
"from",
"===",
"'function'",
"&&",
"Buffer",
".",
"from",
"!==",
"Uint8Array",
".",
"from",
")",
"?",
"Buffer",
".",
"from",
"(",
"data",
")",
":",
"new",
"Buf... | Converts a UTF8 string into a Buffer.
@param {string} data Some string to convert to a Buffer
@returns {Buffer} | [
"Converts",
"a",
"UTF8",
"string",
"into",
"a",
"Buffer",
"."
] | c23e5f0edd150f8885267e5f7c8a564f8e6e8562 | https://github.com/aws/aws-sdk-js/blob/c23e5f0edd150f8885267e5f7c8a564f8e6e8562/lib/publisher/string-to-buffer.js#L6-L9 |
3,403 | exceljs/exceljs | lib/doc/defined-names.js | vGrow | function vGrow(yy, edge) {
const c = matrix.findCellAt(sheetName, yy, cell.col);
if (!c || !c.mark) { return false; }
range[edge] = yy;
c.mark = false;
return true;
} | javascript | function vGrow(yy, edge) {
const c = matrix.findCellAt(sheetName, yy, cell.col);
if (!c || !c.mark) { return false; }
range[edge] = yy;
c.mark = false;
return true;
} | [
"function",
"vGrow",
"(",
"yy",
",",
"edge",
")",
"{",
"const",
"c",
"=",
"matrix",
".",
"findCellAt",
"(",
"sheetName",
",",
"yy",
",",
"cell",
".",
"col",
")",
";",
"if",
"(",
"!",
"c",
"||",
"!",
"c",
".",
"mark",
")",
"{",
"return",
"false"... | grow vertical - only one col to worry about | [
"grow",
"vertical",
"-",
"only",
"one",
"col",
"to",
"worry",
"about"
] | c6ee7a14d5e0e5a07bf0e475aa4dd7b9a1e907f2 | https://github.com/exceljs/exceljs/blob/c6ee7a14d5e0e5a07bf0e475aa4dd7b9a1e907f2/lib/doc/defined-names.js#L87-L93 |
3,404 | exceljs/exceljs | lib/doc/defined-names.js | hGrow | function hGrow(xx, edge) {
const cells = [];
for (y = range.top; y <= range.bottom; y++) {
const c = matrix.findCellAt(sheetName, y, xx);
if (c && c.mark) {
cells.push(c);
} else {
return false;
}
}
range[edge] = xx;
for (let i = 0; i < c... | javascript | function hGrow(xx, edge) {
const cells = [];
for (y = range.top; y <= range.bottom; y++) {
const c = matrix.findCellAt(sheetName, y, xx);
if (c && c.mark) {
cells.push(c);
} else {
return false;
}
}
range[edge] = xx;
for (let i = 0; i < c... | [
"function",
"hGrow",
"(",
"xx",
",",
"edge",
")",
"{",
"const",
"cells",
"=",
"[",
"]",
";",
"for",
"(",
"y",
"=",
"range",
".",
"top",
";",
"y",
"<=",
"range",
".",
"bottom",
";",
"y",
"++",
")",
"{",
"const",
"c",
"=",
"matrix",
".",
"findC... | grow horizontal - ensure all rows can grow | [
"grow",
"horizontal",
"-",
"ensure",
"all",
"rows",
"can",
"grow"
] | c6ee7a14d5e0e5a07bf0e475aa4dd7b9a1e907f2 | https://github.com/exceljs/exceljs/blob/c6ee7a14d5e0e5a07bf0e475aa4dd7b9a1e907f2/lib/doc/defined-names.js#L98-L113 |
3,405 | exceljs/exceljs | lib/utils/stream-buf.js | function(size) {
var buffers;
// read min(buffer, size || infinity)
if (size) {
buffers = [];
while (size && this.buffers.length && !this.buffers[0].eod) {
var first = this.buffers[0];
var buffer = first.read(size);
size -= buffer.length;
buffers.push(buffer);
... | javascript | function(size) {
var buffers;
// read min(buffer, size || infinity)
if (size) {
buffers = [];
while (size && this.buffers.length && !this.buffers[0].eod) {
var first = this.buffers[0];
var buffer = first.read(size);
size -= buffer.length;
buffers.push(buffer);
... | [
"function",
"(",
"size",
")",
"{",
"var",
"buffers",
";",
"// read min(buffer, size || infinity)",
"if",
"(",
"size",
")",
"{",
"buffers",
"=",
"[",
"]",
";",
"while",
"(",
"size",
"&&",
"this",
".",
"buffers",
".",
"length",
"&&",
"!",
"this",
".",
"b... | readable event readable - some data is now available event data - switch to flowing mode - feeds chunks to handler event end - no more data event close - optional, indicates upstream close event error - duh | [
"readable",
"event",
"readable",
"-",
"some",
"data",
"is",
"now",
"available",
"event",
"data",
"-",
"switch",
"to",
"flowing",
"mode",
"-",
"feeds",
"chunks",
"to",
"handler",
"event",
"end",
"-",
"no",
"more",
"data",
"event",
"close",
"-",
"optional",
... | c6ee7a14d5e0e5a07bf0e475aa4dd7b9a1e907f2 | https://github.com/exceljs/exceljs/blob/c6ee7a14d5e0e5a07bf0e475aa4dd7b9a1e907f2/lib/utils/stream-buf.js#L291-L312 | |
3,406 | LLK/scratch-blocks | core/flyout_base.js | function() {
var topBlocks = this.workspace_.getTopBlocks(false);
for (var i = 0, block; block = topBlocks[i]; i++) {
block.removeSelect();
}
} | javascript | function() {
var topBlocks = this.workspace_.getTopBlocks(false);
for (var i = 0, block; block = topBlocks[i]; i++) {
block.removeSelect();
}
} | [
"function",
"(",
")",
"{",
"var",
"topBlocks",
"=",
"this",
".",
"workspace_",
".",
"getTopBlocks",
"(",
"false",
")",
";",
"for",
"(",
"var",
"i",
"=",
"0",
",",
"block",
";",
"block",
"=",
"topBlocks",
"[",
"i",
"]",
";",
"i",
"++",
")",
"{",
... | IE 11 is an incompetent browser that fails to fire mouseout events. When the mouse is over the background, deselect all blocks. | [
"IE",
"11",
"is",
"an",
"incompetent",
"browser",
"that",
"fails",
"to",
"fire",
"mouseout",
"events",
".",
"When",
"the",
"mouse",
"is",
"over",
"the",
"background",
"deselect",
"all",
"blocks",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/core/flyout_base.js#L563-L568 | |
3,407 | LLK/scratch-blocks | blocks_vertical/vertical_extensions.js | function(menuOptions) {
// Add the edit option at the end.
menuOptions.push(Blockly.Procedures.makeEditOption(this));
// Find the delete option and update its callback to be specific to
// functions.
for (var i = 0, option; option = menuOptions[i]; i++) {
if (option.text == Blockly.Msg.DELETE... | javascript | function(menuOptions) {
// Add the edit option at the end.
menuOptions.push(Blockly.Procedures.makeEditOption(this));
// Find the delete option and update its callback to be specific to
// functions.
for (var i = 0, option; option = menuOptions[i]; i++) {
if (option.text == Blockly.Msg.DELETE... | [
"function",
"(",
"menuOptions",
")",
"{",
"// Add the edit option at the end.",
"menuOptions",
".",
"push",
"(",
"Blockly",
".",
"Procedures",
".",
"makeEditOption",
"(",
"this",
")",
")",
";",
"// Find the delete option and update its callback to be specific to",
"// funct... | Add the "edit" option and removes the "duplicate" option from the context
menu.
@param {!Array.<!Object>} menuOptions List of menu options to edit.
@this Blockly.Block | [
"Add",
"the",
"edit",
"option",
"and",
"removes",
"the",
"duplicate",
"option",
"from",
"the",
"context",
"menu",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/vertical_extensions.js#L159-L192 | |
3,408 | LLK/scratch-blocks | blocks_vertical/operators.js | function() {
this.jsonInit({
"message0": Blockly.Msg.OPERATORS_MATHOP,
"args0": [
{
"type": "field_dropdown",
"name": "OPERATOR",
"options": [
[Blockly.Msg.OPERATORS_MATHOP_ABS, 'abs'],
[Blockly.Msg.OPERATORS_MATHOP_FLOOR, 'floor'],
... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.OPERATORS_MATHOP,
"args0": [
{
"type": "field_dropdown",
"name": "OPERATOR",
"options": [
[Blockly.Msg.OPERATORS_MATHOP_ABS, 'abs'],
[Blockly.Msg.OPERATORS_MATHOP_FLOOR, 'floor'],
... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"OPERATORS_MATHOP",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"OPERATOR\"",
",",
"\"options\"... | Block for "advanced" math ops on a number.
@this Blockly.Block | [
"Block",
"for",
"advanced",
"math",
"ops",
"on",
"a",
"number",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/operators.js#L437-L469 | |
3,409 | LLK/scratch-blocks | blocks_common/colour.js | randomColour | function randomColour() {
var num = Math.floor(Math.random() * Math.pow(2, 24));
return '#' + ('00000' + num.toString(16)).substr(-6);
} | javascript | function randomColour() {
var num = Math.floor(Math.random() * Math.pow(2, 24));
return '#' + ('00000' + num.toString(16)).substr(-6);
} | [
"function",
"randomColour",
"(",
")",
"{",
"var",
"num",
"=",
"Math",
".",
"floor",
"(",
"Math",
".",
"random",
"(",
")",
"*",
"Math",
".",
"pow",
"(",
"2",
",",
"24",
")",
")",
";",
"return",
"'#'",
"+",
"(",
"'00000'",
"+",
"num",
".",
"toStr... | Pick a random colour.
@return {string} #RRGGBB for random colour. | [
"Pick",
"a",
"random",
"colour",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_common/colour.js#L37-L40 |
3,410 | LLK/scratch-blocks | blocks_vertical/looks.js | function() {
this.jsonInit({
"message0": Blockly.Msg.LOOKS_CHANGEEFFECTBY,
"args0": [
{
"type": "field_dropdown",
"name": "EFFECT",
"options": [
[Blockly.Msg.LOOKS_EFFECT_COLOR, 'COLOR'],
[Blockly.Msg.LOOKS_EFFECT_FISHEYE, 'FISHEYE'],
... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.LOOKS_CHANGEEFFECTBY,
"args0": [
{
"type": "field_dropdown",
"name": "EFFECT",
"options": [
[Blockly.Msg.LOOKS_EFFECT_COLOR, 'COLOR'],
[Blockly.Msg.LOOKS_EFFECT_FISHEYE, 'FISHEYE'],
... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"LOOKS_CHANGEEFFECTBY",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"EFFECT\"",
",",
"\"options... | Block to change graphic effect.
@this Blockly.Block | [
"Block",
"to",
"change",
"graphic",
"effect",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/looks.js#L168-L193 | |
3,411 | LLK/scratch-blocks | blocks_vertical/looks.js | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_dropdown",
"name": "COSTUME",
"options": [
['costume1', 'COSTUME1'],
['costume2', 'COSTUME2']
]
}
],
"colour": Blockly.Colours.looks.seco... | javascript | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_dropdown",
"name": "COSTUME",
"options": [
['costume1', 'COSTUME1'],
['costume2', 'COSTUME2']
]
}
],
"colour": Blockly.Colours.looks.seco... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"\"%1\"",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"COSTUME\"",
",",
"\"options\"",
":",
"[",
"[",
"'costume1'",
",",
... | Costumes drop-down menu.
@this Blockly.Block | [
"Costumes",
"drop",
"-",
"down",
"menu",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/looks.js#L354-L372 | |
3,412 | LLK/scratch-blocks | blocks_vertical/looks.js | function() {
this.jsonInit({
"message0": Blockly.Msg.LOOKS_BACKDROPNUMBERNAME,
"args0": [
{
"type": "field_dropdown",
"name": "NUMBER_NAME",
"options": [
[Blockly.Msg.LOOKS_NUMBERNAME_NUMBER, 'number'],
[Blockly.Msg.LOOKS_NUMBERNAME_NAME, 'na... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.LOOKS_BACKDROPNUMBERNAME,
"args0": [
{
"type": "field_dropdown",
"name": "NUMBER_NAME",
"options": [
[Blockly.Msg.LOOKS_NUMBERNAME_NUMBER, 'number'],
[Blockly.Msg.LOOKS_NUMBERNAME_NAME, 'na... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"LOOKS_BACKDROPNUMBERNAME",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"NUMBER_NAME\"",
",",
"... | Block to report backdrop's number or name
@this Blockly.Block | [
"Block",
"to",
"report",
"backdrop",
"s",
"number",
"or",
"name"
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/looks.js#L512-L529 | |
3,413 | LLK/scratch-blocks | blocks_vertical/event.js | function() {
this.jsonInit({
"id": "event_whenflagclicked",
"message0": Blockly.Msg.EVENT_WHENFLAGCLICKED,
"args0": [
{
"type": "field_image",
"src": Blockly.mainWorkspace.options.pathToMedia + "green-flag.svg",
"width": 24,
"height": 24,
"... | javascript | function() {
this.jsonInit({
"id": "event_whenflagclicked",
"message0": Blockly.Msg.EVENT_WHENFLAGCLICKED,
"args0": [
{
"type": "field_image",
"src": Blockly.mainWorkspace.options.pathToMedia + "green-flag.svg",
"width": 24,
"height": 24,
"... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"id\"",
":",
"\"event_whenflagclicked\"",
",",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"EVENT_WHENFLAGCLICKED",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_image\"",
",",
... | Block for when flag clicked.
@this Blockly.Block | [
"Block",
"for",
"when",
"flag",
"clicked",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/event.js#L78-L94 | |
3,414 | LLK/scratch-blocks | blocks_vertical/event.js | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_variable",
"name": "BROADCAST_OPTION",
"variableTypes":[Blockly.BROADCAST_MESSAGE_VARIABLE_TYPE],
"variable": Blockly.Msg.DEFAULT_BROADCAST_MESSAGE_NAME
}
],
"co... | javascript | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_variable",
"name": "BROADCAST_OPTION",
"variableTypes":[Blockly.BROADCAST_MESSAGE_VARIABLE_TYPE],
"variable": Blockly.Msg.DEFAULT_BROADCAST_MESSAGE_NAME
}
],
"co... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"\"%1\"",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_variable\"",
",",
"\"name\"",
":",
"\"BROADCAST_OPTION\"",
",",
"\"variableTypes\"",
":",
"[",
"Blockly",
... | Broadcast drop-down menu.
@this Blockly.Block | [
"Broadcast",
"drop",
"-",
"down",
"menu",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/event.js#L205-L221 | |
3,415 | LLK/scratch-blocks | blocks_vertical/event.js | function() {
this.jsonInit({
"id": "event_whenkeypressed",
"message0": Blockly.Msg.EVENT_WHENKEYPRESSED,
"args0": [
{
"type": "field_dropdown",
"name": "KEY_OPTION",
"options": [
[Blockly.Msg.EVENT_WHENKEYPRESSED_SPACE, 'space'],
[Block... | javascript | function() {
this.jsonInit({
"id": "event_whenkeypressed",
"message0": Blockly.Msg.EVENT_WHENKEYPRESSED,
"args0": [
{
"type": "field_dropdown",
"name": "KEY_OPTION",
"options": [
[Blockly.Msg.EVENT_WHENKEYPRESSED_SPACE, 'space'],
[Block... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"id\"",
":",
"\"event_whenkeypressed\"",
",",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"EVENT_WHENKEYPRESSED",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
... | Block to send a broadcast.
@this Blockly.Block | [
"Block",
"to",
"send",
"a",
"broadcast",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/event.js#L270-L327 | |
3,416 | LLK/scratch-blocks | blocks_vertical/sensing.js | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_dropdown",
"name": "KEY_OPTION",
"options": [
[Blockly.Msg.EVENT_WHENKEYPRESSED_SPACE, 'space'],
[Blockly.Msg.EVENT_WHENKEYPRESSED_UP, 'up arrow'],
[Blockl... | javascript | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_dropdown",
"name": "KEY_OPTION",
"options": [
[Blockly.Msg.EVENT_WHENKEYPRESSED_SPACE, 'space'],
[Blockly.Msg.EVENT_WHENKEYPRESSED_UP, 'up arrow'],
[Blockl... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"\"%1\"",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"KEY_OPTION\"",
",",
"\"options\"",
":",
"[",
"[",
"Blockly",
".",
... | Options for Keys
@this Blockly.Block | [
"Options",
"for",
"Keys"
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/sensing.js#L220-L275 | |
3,417 | LLK/scratch-blocks | blocks_vertical/sensing.js | function() {
this.jsonInit({
"message0": Blockly.Msg.SENSING_SETDRAGMODE,
"args0": [
{
"type": "field_dropdown",
"name": "DRAG_MODE",
"options": [
[Blockly.Msg.SENSING_SETDRAGMODE_DRAGGABLE, 'draggable'],
[Blockly.Msg.SENSING_SETDRAGMODE_NOTD... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.SENSING_SETDRAGMODE,
"args0": [
{
"type": "field_dropdown",
"name": "DRAG_MODE",
"options": [
[Blockly.Msg.SENSING_SETDRAGMODE_DRAGGABLE, 'draggable'],
[Blockly.Msg.SENSING_SETDRAGMODE_NOTD... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"SENSING_SETDRAGMODE",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"DRAG_MODE\"",
",",
"\"optio... | Block to set drag mode.
@this Blockly.Block | [
"Block",
"to",
"set",
"drag",
"mode",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/sensing.js#L325-L341 | |
3,418 | LLK/scratch-blocks | blocks_vertical/sensing.js | function() {
this.jsonInit({
"message0": Blockly.Msg.SENSING_OF,
"args0": [
{
"type": "field_dropdown",
"name": "PROPERTY",
"options": [
[Blockly.Msg.SENSING_OF_XPOSITION, 'x position'],
[Blockly.Msg.SENSING_OF_YPOSITION, 'y position'],
... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.SENSING_OF,
"args0": [
{
"type": "field_dropdown",
"name": "PROPERTY",
"options": [
[Blockly.Msg.SENSING_OF_XPOSITION, 'x position'],
[Blockly.Msg.SENSING_OF_YPOSITION, 'y position'],
... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"SENSING_OF",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"PROPERTY\"",
",",
"\"options\"",
"... | Block to report properties of sprites.
@this Blockly.Block | [
"Block",
"to",
"report",
"properties",
"of",
"sprites",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/sensing.js#L434-L463 | |
3,419 | LLK/scratch-blocks | blocks_vertical/sensing.js | function() {
this.jsonInit({
"message0": Blockly.Msg.SENSING_CURRENT,
"args0": [
{
"type": "field_dropdown",
"name": "CURRENTMENU",
"options": [
[Blockly.Msg.SENSING_CURRENT_YEAR, 'YEAR'],
[Blockly.Msg.SENSING_CURRENT_MONTH, 'MONTH'],
... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.SENSING_CURRENT,
"args0": [
{
"type": "field_dropdown",
"name": "CURRENTMENU",
"options": [
[Blockly.Msg.SENSING_CURRENT_YEAR, 'YEAR'],
[Blockly.Msg.SENSING_CURRENT_MONTH, 'MONTH'],
... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"SENSING_CURRENT",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"CURRENTMENU\"",
",",
"\"options... | Block to Report the current option.
@this Blockly.Block | [
"Block",
"to",
"Report",
"the",
"current",
"option",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/sensing.js#L471-L493 | |
3,420 | LLK/scratch-blocks | blocks_vertical/sound.js | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_dropdown",
"name": "SOUND_MENU",
"options": [
['1', '0'],
['2', '1'],
['3', '2'],
['4', '3'],
['5', '4'],
['6', '5'],
... | javascript | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_dropdown",
"name": "SOUND_MENU",
"options": [
['1', '0'],
['2', '1'],
['3', '2'],
['4', '3'],
['5', '4'],
['6', '5'],
... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"\"%1\"",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"SOUND_MENU\"",
",",
"\"options\"",
":",
"[",
"[",
"'1'",
",",
"'... | Sound effects drop-down menu.
@this Blockly.Block | [
"Sound",
"effects",
"drop",
"-",
"down",
"menu",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/sound.js#L35-L64 | |
3,421 | LLK/scratch-blocks | blocks_vertical/sound.js | function() {
this.jsonInit({
"message0": Blockly.Msg.SOUND_SETEFFECTO,
"args0": [
{
"type": "field_dropdown",
"name": "EFFECT",
"options": [
[Blockly.Msg.SOUND_EFFECTS_PITCH, 'PITCH'],
[Blockly.Msg.SOUND_EFFECTS_PAN, 'PAN']
]
... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.SOUND_SETEFFECTO,
"args0": [
{
"type": "field_dropdown",
"name": "EFFECT",
"options": [
[Blockly.Msg.SOUND_EFFECTS_PITCH, 'PITCH'],
[Blockly.Msg.SOUND_EFFECTS_PAN, 'PAN']
]
... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"SOUND_SETEFFECTO",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"EFFECT\"",
",",
"\"options\"",... | Block to set the audio effect
@this Blockly.Block | [
"Block",
"to",
"set",
"the",
"audio",
"effect"
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/sound.js#L126-L146 | |
3,422 | LLK/scratch-blocks | blocks_vertical/sound.js | function() {
this.jsonInit({
"message0": Blockly.Msg.SOUND_CHANGEEFFECTBY,
"args0": [
{
"type": "field_dropdown",
"name": "EFFECT",
"options": [
[Blockly.Msg.SOUND_EFFECTS_PITCH, 'PITCH'],
[Blockly.Msg.SOUND_EFFECTS_PAN, 'PAN']
]
... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.SOUND_CHANGEEFFECTBY,
"args0": [
{
"type": "field_dropdown",
"name": "EFFECT",
"options": [
[Blockly.Msg.SOUND_EFFECTS_PITCH, 'PITCH'],
[Blockly.Msg.SOUND_EFFECTS_PAN, 'PAN']
]
... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"SOUND_CHANGEEFFECTBY",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"EFFECT\"",
",",
"\"options... | Block to change the audio effect
@this Blockly.Block | [
"Block",
"to",
"change",
"the",
"audio",
"effect"
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/sound.js#L155-L175 | |
3,423 | LLK/scratch-blocks | i18n/js_to_json.js | function (str) {
str = str.split('Blockly.Msg.')[1].split(' ');
return {
key: str[0],
value: str
.splice(2, str.length)
.join(' ')
.slice(1, -2) // strip off initial ', and ending ';
.replace(/\\'/g, "'")
};
} | javascript | function (str) {
str = str.split('Blockly.Msg.')[1].split(' ');
return {
key: str[0],
value: str
.splice(2, str.length)
.join(' ')
.slice(1, -2) // strip off initial ', and ending ';
.replace(/\\'/g, "'")
};
} | [
"function",
"(",
"str",
")",
"{",
"str",
"=",
"str",
".",
"split",
"(",
"'Blockly.Msg.'",
")",
"[",
"1",
"]",
".",
"split",
"(",
"' '",
")",
";",
"return",
"{",
"key",
":",
"str",
"[",
"0",
"]",
",",
"value",
":",
"str",
".",
"splice",
"(",
"... | Extract key and value from message definition | [
"Extract",
"key",
"and",
"value",
"from",
"message",
"definition"
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/i18n/js_to_json.js#L22-L32 | |
3,424 | LLK/scratch-blocks | blocks_vertical/control.js | function() {
this.jsonInit({
"type": "control_if_else",
"message0": Blockly.Msg.CONTROL_IF,
"message1": "%1",
"message2": Blockly.Msg.CONTROL_ELSE,
"message3": "%1",
"args0": [
{
"type": "input_value",
"name": "CONDITION",
"check": "Boolean"
... | javascript | function() {
this.jsonInit({
"type": "control_if_else",
"message0": Blockly.Msg.CONTROL_IF,
"message1": "%1",
"message2": Blockly.Msg.CONTROL_ELSE,
"message3": "%1",
"args0": [
{
"type": "input_value",
"name": "CONDITION",
"check": "Boolean"
... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"type\"",
":",
"\"control_if_else\"",
",",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"CONTROL_IF",
",",
"\"message1\"",
":",
"\"%1\"",
",",
"\"message2\"",
":",
"Blockly",
".",
"Msg",
"... | Block for if-else.
@this Blockly.Block | [
"Block",
"for",
"if",
"-",
"else",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/control.js#L140-L169 | |
3,425 | LLK/scratch-blocks | blocks_vertical/control.js | function() {
var ALL_SCRIPTS = 'all';
var THIS_SCRIPT = 'this script';
var OTHER_SCRIPTS = 'other scripts in sprite';
var stopDropdown = new Blockly.FieldDropdown(function() {
if (this.sourceBlock_ &&
this.sourceBlock_.nextConnection &&
this.sourceBlock_.nextConnection.isConnec... | javascript | function() {
var ALL_SCRIPTS = 'all';
var THIS_SCRIPT = 'this script';
var OTHER_SCRIPTS = 'other scripts in sprite';
var stopDropdown = new Blockly.FieldDropdown(function() {
if (this.sourceBlock_ &&
this.sourceBlock_.nextConnection &&
this.sourceBlock_.nextConnection.isConnec... | [
"function",
"(",
")",
"{",
"var",
"ALL_SCRIPTS",
"=",
"'all'",
";",
"var",
"THIS_SCRIPT",
"=",
"'this script'",
";",
"var",
"OTHER_SCRIPTS",
"=",
"'other scripts in sprite'",
";",
"var",
"stopDropdown",
"=",
"new",
"Blockly",
".",
"FieldDropdown",
"(",
"function... | Block for stop all scripts.
@this Blockly.Block | [
"Block",
"for",
"stop",
"all",
"scripts",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/control.js#L177-L215 | |
3,426 | LLK/scratch-blocks | blocks_vertical/control.js | function() {
this.jsonInit({
"message0": Blockly.Msg.CONTROL_REPEATUNTIL,
"message1": "%1",
"message2": "%1",
"lastDummyAlign2": "RIGHT",
"args0": [
{
"type": "input_value",
"name": "CONDITION",
"check": "Boolean"
}
],
"args1": ... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.CONTROL_REPEATUNTIL,
"message1": "%1",
"message2": "%1",
"lastDummyAlign2": "RIGHT",
"args0": [
{
"type": "input_value",
"name": "CONDITION",
"check": "Boolean"
}
],
"args1": ... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"CONTROL_REPEATUNTIL",
",",
"\"message1\"",
":",
"\"%1\"",
",",
"\"message2\"",
":",
"\"%1\"",
",",
"\"lastDummyAlign2\"",
":",
"\"RIGHT\"",
",",
"... | Block to repeat until a condition becomes true.
@this Blockly.Block | [
"Block",
"to",
"repeat",
"until",
"a",
"condition",
"becomes",
"true",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/control.js#L274-L306 | |
3,427 | LLK/scratch-blocks | blocks_vertical/data.js | function() {
this.jsonInit({
"message0": Blockly.Msg.DATA_SHOWVARIABLE,
"args0": [
{
"type": "field_variable",
"name": "VARIABLE"
}
],
"previousStatement": null,
"nextStatement": null,
"category": Blockly.Categories.data,
"colour": Blockl... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.DATA_SHOWVARIABLE,
"args0": [
{
"type": "field_variable",
"name": "VARIABLE"
}
],
"previousStatement": null,
"nextStatement": null,
"category": Blockly.Categories.data,
"colour": Blockl... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"DATA_SHOWVARIABLE",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_variable\"",
",",
"\"name\"",
":",
"\"VARIABLE\"",
"}",
"]",
",",... | Block to show a variable
@this Blockly.Block | [
"Block",
"to",
"show",
"a",
"variable"
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/data.js#L109-L125 | |
3,428 | LLK/scratch-blocks | blocks_vertical/data.js | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_numberdropdown",
"name": "INDEX",
"value": "1",
"min": 1,
"precision": 1,
"options": [
["1", "1"],
[Blockly.Msg.DATA_INDEX_LAST, "last"],... | javascript | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_numberdropdown",
"name": "INDEX",
"value": "1",
"min": 1,
"precision": 1,
"options": [
["1", "1"],
[Blockly.Msg.DATA_INDEX_LAST, "last"],... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"\"%1\"",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_numberdropdown\"",
",",
"\"name\"",
":",
"\"INDEX\"",
",",
"\"value\"",
":",
"\"1\"",
",",
"\"min\"",
":... | List index menu, with all option.
@this Blockly.Block | [
"List",
"index",
"menu",
"with",
"all",
"option",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/data.js#L180-L200 | |
3,429 | LLK/scratch-blocks | blocks_vertical/data.js | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_numberdropdown",
"name": "INDEX",
"value": "1",
"min": 1,
"precision": 1,
"options": [
["1", "1"],
[Blockly.Msg.DATA_INDEX_LAST, "last"],... | javascript | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_numberdropdown",
"name": "INDEX",
"value": "1",
"min": 1,
"precision": 1,
"options": [
["1", "1"],
[Blockly.Msg.DATA_INDEX_LAST, "last"],... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"\"%1\"",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_numberdropdown\"",
",",
"\"name\"",
":",
"\"INDEX\"",
",",
"\"value\"",
":",
"\"1\"",
",",
"\"min\"",
":... | List index menu, with random option.
@this Blockly.Block | [
"List",
"index",
"menu",
"with",
"random",
"option",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/data.js#L208-L228 | |
3,430 | LLK/scratch-blocks | blocks_vertical/data.js | function() {
this.jsonInit({
"message0": Blockly.Msg.DATA_ITEMOFLIST,
"args0": [
{
"type": "input_value",
"name": "INDEX"
},
{
"type": "field_variable",
"name": "LIST",
"variableTypes": [Blockly.LIST_VARIABLE_TYPE]
}
... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.DATA_ITEMOFLIST,
"args0": [
{
"type": "input_value",
"name": "INDEX"
},
{
"type": "field_variable",
"name": "LIST",
"variableTypes": [Blockly.LIST_VARIABLE_TYPE]
}
... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"DATA_ITEMOFLIST",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"input_value\"",
",",
"\"name\"",
":",
"\"INDEX\"",
"}",
",",
"{",
"\"ty... | Block for reporting item of list.
@this Blockly.Block | [
"Block",
"for",
"reporting",
"item",
"of",
"list",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/data.js#L365-L384 | |
3,431 | LLK/scratch-blocks | blocks_vertical/data.js | function(options) {
var fieldName = 'VARIABLE';
if (this.isCollapsed()) {
return;
}
var currentVarName = this.getField(fieldName).text_;
if (!this.isInFlyout) {
var variablesList = this.workspace.getVariablesOfType('');
variablesList.sort(function(a, b) {
return Blockly.scr... | javascript | function(options) {
var fieldName = 'VARIABLE';
if (this.isCollapsed()) {
return;
}
var currentVarName = this.getField(fieldName).text_;
if (!this.isInFlyout) {
var variablesList = this.workspace.getVariablesOfType('');
variablesList.sort(function(a, b) {
return Blockly.scr... | [
"function",
"(",
"options",
")",
"{",
"var",
"fieldName",
"=",
"'VARIABLE'",
";",
"if",
"(",
"this",
".",
"isCollapsed",
"(",
")",
")",
"{",
"return",
";",
"}",
"var",
"currentVarName",
"=",
"this",
".",
"getField",
"(",
"fieldName",
")",
".",
"text_",... | Add context menu option to change the selected variable.
@param {!Array} options List of menu options to add to.
@this Blockly.Block | [
"Add",
"context",
"menu",
"option",
"to",
"change",
"the",
"selected",
"variable",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/data.js#L516-L554 | |
3,432 | LLK/scratch-blocks | blocks_vertical/data.js | function(options) {
var fieldName = 'LIST';
if (this.isCollapsed()) {
return;
}
var currentVarName = this.getField(fieldName).text_;
if (!this.isInFlyout) {
var variablesList = this.workspace.getVariablesOfType('list');
for (var i = 0; i < variablesList.length; i++) {
var v... | javascript | function(options) {
var fieldName = 'LIST';
if (this.isCollapsed()) {
return;
}
var currentVarName = this.getField(fieldName).text_;
if (!this.isInFlyout) {
var variablesList = this.workspace.getVariablesOfType('list');
for (var i = 0; i < variablesList.length; i++) {
var v... | [
"function",
"(",
"options",
")",
"{",
"var",
"fieldName",
"=",
"'LIST'",
";",
"if",
"(",
"this",
".",
"isCollapsed",
"(",
")",
")",
"{",
"return",
";",
"}",
"var",
"currentVarName",
"=",
"this",
".",
"getField",
"(",
"fieldName",
")",
".",
"text_",
"... | Add context menu option to change the selected list.
@param {!Array} options List of menu options to add to.
@this Blockly.Block | [
"Add",
"context",
"menu",
"option",
"to",
"change",
"the",
"selected",
"list",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/data.js#L574-L610 | |
3,433 | LLK/scratch-blocks | core/connection_db.js | checkConnection_ | function checkConnection_(yIndex) {
var dx = currentX - db[yIndex].x_;
var dy = currentY - db[yIndex].y_;
var r = Math.sqrt(dx * dx + dy * dy);
if (r <= maxRadius) {
neighbours.push(db[yIndex]);
}
return dy < maxRadius;
} | javascript | function checkConnection_(yIndex) {
var dx = currentX - db[yIndex].x_;
var dy = currentY - db[yIndex].y_;
var r = Math.sqrt(dx * dx + dy * dy);
if (r <= maxRadius) {
neighbours.push(db[yIndex]);
}
return dy < maxRadius;
} | [
"function",
"checkConnection_",
"(",
"yIndex",
")",
"{",
"var",
"dx",
"=",
"currentX",
"-",
"db",
"[",
"yIndex",
"]",
".",
"x_",
";",
"var",
"dy",
"=",
"currentY",
"-",
"db",
"[",
"yIndex",
"]",
".",
"y_",
";",
"var",
"r",
"=",
"Math",
".",
"sqrt... | Computes if the current connection is within the allowed radius of another
connection.
This function is a closure and has access to outside variables.
@param {number} yIndex The other connection's index in the database.
@return {boolean} True if the current connection's vertical distance from
the other connection is le... | [
"Computes",
"if",
"the",
"current",
"connection",
"is",
"within",
"the",
"allowed",
"radius",
"of",
"another",
"connection",
".",
"This",
"function",
"is",
"a",
"closure",
"and",
"has",
"access",
"to",
"outside",
"variables",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/core/connection_db.js#L185-L193 |
3,434 | LLK/scratch-blocks | blocks_vertical/motion.js | function() {
this.jsonInit({
"message0": Blockly.Msg.MOTION_TURNRIGHT,
"args0": [
{
"type": "field_image",
"src": Blockly.mainWorkspace.options.pathToMedia + "rotate-right.svg",
"width": 24,
"height": 24
},
{
"type": "input_value"... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.MOTION_TURNRIGHT,
"args0": [
{
"type": "field_image",
"src": Blockly.mainWorkspace.options.pathToMedia + "rotate-right.svg",
"width": 24,
"height": 24
},
{
"type": "input_value"... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"MOTION_TURNRIGHT",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_image\"",
",",
"\"src\"",
":",
"Blockly",
".",
"mainWorkspace",
".... | Block to turn right.
@this Blockly.Block | [
"Block",
"to",
"turn",
"right",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/motion.js#L56-L74 | |
3,435 | LLK/scratch-blocks | blocks_vertical/motion.js | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_dropdown",
"name": "TOWARDS",
"options": [
[Blockly.Msg.MOTION_POINTTOWARDS_POINTER, '_mouse_'],
[Blockly.Msg.MOTION_POINTTOWARDS_RANDOM, '_random_']
]
... | javascript | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_dropdown",
"name": "TOWARDS",
"options": [
[Blockly.Msg.MOTION_POINTTOWARDS_POINTER, '_mouse_'],
[Blockly.Msg.MOTION_POINTTOWARDS_RANDOM, '_random_']
]
... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"\"%1\"",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"TOWARDS\"",
",",
"\"options\"",
":",
"[",
"[",
"Blockly",
".",
"... | Point towards drop-down menu.
@this Blockly.Block | [
"Point",
"towards",
"drop",
"-",
"down",
"menu",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/motion.js#L128-L146 | |
3,436 | LLK/scratch-blocks | blocks_vertical/motion.js | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_dropdown",
"name": "TO",
"options": [
[Blockly.Msg.MOTION_GOTO_POINTER, '_mouse_'],
[Blockly.Msg.MOTION_GOTO_RANDOM, '_random_']
]
}
],
"... | javascript | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_dropdown",
"name": "TO",
"options": [
[Blockly.Msg.MOTION_GOTO_POINTER, '_mouse_'],
[Blockly.Msg.MOTION_GOTO_RANDOM, '_random_']
]
}
],
"... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"\"%1\"",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"TO\"",
",",
"\"options\"",
":",
"[",
"[",
"Blockly",
".",
"Msg",... | Go to drop-down menu.
@this Blockly.Block | [
"Go",
"to",
"drop",
"-",
"down",
"menu",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/motion.js#L174-L192 | |
3,437 | LLK/scratch-blocks | blocks_vertical/motion.js | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_dropdown",
"name": "TO",
"options": [
[Blockly.Msg.MOTION_GLIDETO_POINTER, '_mouse_'],
[Blockly.Msg.MOTION_GLIDETO_RANDOM, '_random_']
]
}
],
... | javascript | function() {
this.jsonInit({
"message0": "%1",
"args0": [
{
"type": "field_dropdown",
"name": "TO",
"options": [
[Blockly.Msg.MOTION_GLIDETO_POINTER, '_mouse_'],
[Blockly.Msg.MOTION_GLIDETO_RANDOM, '_random_']
]
}
],
... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"\"%1\"",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"TO\"",
",",
"\"options\"",
":",
"[",
"[",
"Blockly",
".",
"Msg",... | Glide to drop-down menu
@this Blockly.Block | [
"Glide",
"to",
"drop",
"-",
"down",
"menu"
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/motion.js#L272-L290 | |
3,438 | LLK/scratch-blocks | blocks_vertical/motion.js | function() {
this.jsonInit({
"message0": Blockly.Msg.MOTION_SETROTATIONSTYLE,
"args0": [
{
"type": "field_dropdown",
"name": "STYLE",
"options": [
[Blockly.Msg.MOTION_SETROTATIONSTYLE_LEFTRIGHT, 'left-right'],
[Blockly.Msg.MOTION_SETROTATIONS... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.MOTION_SETROTATIONSTYLE,
"args0": [
{
"type": "field_dropdown",
"name": "STYLE",
"options": [
[Blockly.Msg.MOTION_SETROTATIONSTYLE_LEFTRIGHT, 'left-right'],
[Blockly.Msg.MOTION_SETROTATIONS... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"MOTION_SETROTATIONSTYLE",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"STYLE\"",
",",
"\"optio... | Block to set rotation style.
@this Blockly.Block | [
"Block",
"to",
"set",
"rotation",
"style",
"."
] | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/motion.js#L416-L433 | |
3,439 | LLK/scratch-blocks | blocks_vertical/motion.js | function() {
this.jsonInit({
"message0": Blockly.Msg.MOTION_ALIGNSCENE,
"args0": [
{
"type": "field_dropdown",
"name": "ALIGNMENT",
"options": [
[Blockly.Msg.MOTION_ALIGNSCENE_BOTTOMLEFT, 'bottom-left'],
[Blockly.Msg.MOTION_ALIGNSCENE_BOTTOMR... | javascript | function() {
this.jsonInit({
"message0": Blockly.Msg.MOTION_ALIGNSCENE,
"args0": [
{
"type": "field_dropdown",
"name": "ALIGNMENT",
"options": [
[Blockly.Msg.MOTION_ALIGNSCENE_BOTTOMLEFT, 'bottom-left'],
[Blockly.Msg.MOTION_ALIGNSCENE_BOTTOMR... | [
"function",
"(",
")",
"{",
"this",
".",
"jsonInit",
"(",
"{",
"\"message0\"",
":",
"Blockly",
".",
"Msg",
".",
"MOTION_ALIGNSCENE",
",",
"\"args0\"",
":",
"[",
"{",
"\"type\"",
":",
"\"field_dropdown\"",
",",
"\"name\"",
":",
"\"ALIGNMENT\"",
",",
"\"options... | Block to change the stage's scrolling alignment. Does not actually do
anything. This is an obsolete block that is implemented for compatibility
with Scratch 2.0 projects.
@this Blockly.Block | [
"Block",
"to",
"change",
"the",
"stage",
"s",
"scrolling",
"alignment",
".",
"Does",
"not",
"actually",
"do",
"anything",
".",
"This",
"is",
"an",
"obsolete",
"block",
"that",
"is",
"implemented",
"for",
"compatibility",
"with",
"Scratch",
"2",
".",
"0",
"... | 455b2a854435c0a67da1da92320ddc3ec3e2b799 | https://github.com/LLK/scratch-blocks/blob/455b2a854435c0a67da1da92320ddc3ec3e2b799/blocks_vertical/motion.js#L532-L551 | |
3,440 | moment/luxon | src/interval.js | validateStartEnd | function validateStartEnd(start, end) {
if (!start || !start.isValid) {
return new Invalid("missing or invalid start");
} else if (!end || !end.isValid) {
return new Invalid("missing or invalid end");
} else if (end < start) {
return new Invalid(
"end before start",
`The end of an interval... | javascript | function validateStartEnd(start, end) {
if (!start || !start.isValid) {
return new Invalid("missing or invalid start");
} else if (!end || !end.isValid) {
return new Invalid("missing or invalid end");
} else if (end < start) {
return new Invalid(
"end before start",
`The end of an interval... | [
"function",
"validateStartEnd",
"(",
"start",
",",
"end",
")",
"{",
"if",
"(",
"!",
"start",
"||",
"!",
"start",
".",
"isValid",
")",
"{",
"return",
"new",
"Invalid",
"(",
"\"missing or invalid start\"",
")",
";",
"}",
"else",
"if",
"(",
"!",
"end",
"|... | checks if the start is equal to or before the end | [
"checks",
"if",
"the",
"start",
"is",
"equal",
"to",
"or",
"before",
"the",
"end"
] | 236f2badea297ee73421aa39a83e06177c1be6d0 | https://github.com/moment/luxon/blob/236f2badea297ee73421aa39a83e06177c1be6d0/src/interval.js#L10-L23 |
3,441 | moment/luxon | src/duration.js | clone | function clone(dur, alts, clear = false) {
// deep merge for vals
const conf = {
values: clear ? alts.values : Object.assign({}, dur.values, alts.values || {}),
loc: dur.loc.clone(alts.loc),
conversionAccuracy: alts.conversionAccuracy || dur.conversionAccuracy
};
return new Duration(conf);
} | javascript | function clone(dur, alts, clear = false) {
// deep merge for vals
const conf = {
values: clear ? alts.values : Object.assign({}, dur.values, alts.values || {}),
loc: dur.loc.clone(alts.loc),
conversionAccuracy: alts.conversionAccuracy || dur.conversionAccuracy
};
return new Duration(conf);
} | [
"function",
"clone",
"(",
"dur",
",",
"alts",
",",
"clear",
"=",
"false",
")",
"{",
"// deep merge for vals",
"const",
"conf",
"=",
"{",
"values",
":",
"clear",
"?",
"alts",
".",
"values",
":",
"Object",
".",
"assign",
"(",
"{",
"}",
",",
"dur",
".",... | clone really means "create another instance just like this one, but with these changes" | [
"clone",
"really",
"means",
"create",
"another",
"instance",
"just",
"like",
"this",
"one",
"but",
"with",
"these",
"changes"
] | 236f2badea297ee73421aa39a83e06177c1be6d0 | https://github.com/moment/luxon/blob/236f2badea297ee73421aa39a83e06177c1be6d0/src/duration.js#L110-L118 |
3,442 | moment/luxon | src/datetime.js | possiblyCachedWeekData | function possiblyCachedWeekData(dt) {
if (dt.weekData === null) {
dt.weekData = gregorianToWeek(dt.c);
}
return dt.weekData;
} | javascript | function possiblyCachedWeekData(dt) {
if (dt.weekData === null) {
dt.weekData = gregorianToWeek(dt.c);
}
return dt.weekData;
} | [
"function",
"possiblyCachedWeekData",
"(",
"dt",
")",
"{",
"if",
"(",
"dt",
".",
"weekData",
"===",
"null",
")",
"{",
"dt",
".",
"weekData",
"=",
"gregorianToWeek",
"(",
"dt",
".",
"c",
")",
";",
"}",
"return",
"dt",
".",
"weekData",
";",
"}"
] | we cache week data on the DT object and this intermediates the cache | [
"we",
"cache",
"week",
"data",
"on",
"the",
"DT",
"object",
"and",
"this",
"intermediates",
"the",
"cache"
] | 236f2badea297ee73421aa39a83e06177c1be6d0 | https://github.com/moment/luxon/blob/236f2badea297ee73421aa39a83e06177c1be6d0/src/datetime.js#L52-L57 |
3,443 | moment/luxon | src/datetime.js | clone | function clone(inst, alts) {
const current = {
ts: inst.ts,
zone: inst.zone,
c: inst.c,
o: inst.o,
loc: inst.loc,
invalid: inst.invalid
};
return new DateTime(Object.assign({}, current, alts, { old: current }));
} | javascript | function clone(inst, alts) {
const current = {
ts: inst.ts,
zone: inst.zone,
c: inst.c,
o: inst.o,
loc: inst.loc,
invalid: inst.invalid
};
return new DateTime(Object.assign({}, current, alts, { old: current }));
} | [
"function",
"clone",
"(",
"inst",
",",
"alts",
")",
"{",
"const",
"current",
"=",
"{",
"ts",
":",
"inst",
".",
"ts",
",",
"zone",
":",
"inst",
".",
"zone",
",",
"c",
":",
"inst",
".",
"c",
",",
"o",
":",
"inst",
".",
"o",
",",
"loc",
":",
"... | clone really means, "make a new object with these modifications". all "setters" really use this to create a new object while only changing some of the properties | [
"clone",
"really",
"means",
"make",
"a",
"new",
"object",
"with",
"these",
"modifications",
".",
"all",
"setters",
"really",
"use",
"this",
"to",
"create",
"a",
"new",
"object",
"while",
"only",
"changing",
"some",
"of",
"the",
"properties"
] | 236f2badea297ee73421aa39a83e06177c1be6d0 | https://github.com/moment/luxon/blob/236f2badea297ee73421aa39a83e06177c1be6d0/src/datetime.js#L61-L71 |
3,444 | moment/luxon | src/datetime.js | tsToObj | function tsToObj(ts, offset) {
ts += offset * 60 * 1000;
const d = new Date(ts);
return {
year: d.getUTCFullYear(),
month: d.getUTCMonth() + 1,
day: d.getUTCDate(),
hour: d.getUTCHours(),
minute: d.getUTCMinutes(),
second: d.getUTCSeconds(),
millisecond: d.getUTCMilliseconds()
};
} | javascript | function tsToObj(ts, offset) {
ts += offset * 60 * 1000;
const d = new Date(ts);
return {
year: d.getUTCFullYear(),
month: d.getUTCMonth() + 1,
day: d.getUTCDate(),
hour: d.getUTCHours(),
minute: d.getUTCMinutes(),
second: d.getUTCSeconds(),
millisecond: d.getUTCMilliseconds()
};
} | [
"function",
"tsToObj",
"(",
"ts",
",",
"offset",
")",
"{",
"ts",
"+=",
"offset",
"*",
"60",
"*",
"1000",
";",
"const",
"d",
"=",
"new",
"Date",
"(",
"ts",
")",
";",
"return",
"{",
"year",
":",
"d",
".",
"getUTCFullYear",
"(",
")",
",",
"month",
... | convert an epoch timestamp into a calendar object with the given offset | [
"convert",
"an",
"epoch",
"timestamp",
"into",
"a",
"calendar",
"object",
"with",
"the",
"given",
"offset"
] | 236f2badea297ee73421aa39a83e06177c1be6d0 | https://github.com/moment/luxon/blob/236f2badea297ee73421aa39a83e06177c1be6d0/src/datetime.js#L101-L115 |
3,445 | moment/luxon | src/datetime.js | adjustTime | function adjustTime(inst, dur) {
const oPre = inst.o,
year = inst.c.year + dur.years,
month = inst.c.month + dur.months + dur.quarters * 3,
c = Object.assign({}, inst.c, {
year,
month,
day: Math.min(inst.c.day, daysInMonth(year, month)) + dur.days + dur.weeks * 7
}),
millisToAdd ... | javascript | function adjustTime(inst, dur) {
const oPre = inst.o,
year = inst.c.year + dur.years,
month = inst.c.month + dur.months + dur.quarters * 3,
c = Object.assign({}, inst.c, {
year,
month,
day: Math.min(inst.c.day, daysInMonth(year, month)) + dur.days + dur.weeks * 7
}),
millisToAdd ... | [
"function",
"adjustTime",
"(",
"inst",
",",
"dur",
")",
"{",
"const",
"oPre",
"=",
"inst",
".",
"o",
",",
"year",
"=",
"inst",
".",
"c",
".",
"year",
"+",
"dur",
".",
"years",
",",
"month",
"=",
"inst",
".",
"c",
".",
"month",
"+",
"dur",
".",
... | create a new DT instance by adding a duration, adjusting for DSTs | [
"create",
"a",
"new",
"DT",
"instance",
"by",
"adding",
"a",
"duration",
"adjusting",
"for",
"DSTs"
] | 236f2badea297ee73421aa39a83e06177c1be6d0 | https://github.com/moment/luxon/blob/236f2badea297ee73421aa39a83e06177c1be6d0/src/datetime.js#L123-L149 |
3,446 | moment/luxon | src/datetime.js | parseDataToDateTime | function parseDataToDateTime(parsed, parsedZone, opts, format, text) {
const { setZone, zone } = opts;
if (parsed && Object.keys(parsed).length !== 0) {
const interpretationZone = parsedZone || zone,
inst = DateTime.fromObject(
Object.assign(parsed, opts, {
zone: interpretationZone,
... | javascript | function parseDataToDateTime(parsed, parsedZone, opts, format, text) {
const { setZone, zone } = opts;
if (parsed && Object.keys(parsed).length !== 0) {
const interpretationZone = parsedZone || zone,
inst = DateTime.fromObject(
Object.assign(parsed, opts, {
zone: interpretationZone,
... | [
"function",
"parseDataToDateTime",
"(",
"parsed",
",",
"parsedZone",
",",
"opts",
",",
"format",
",",
"text",
")",
"{",
"const",
"{",
"setZone",
",",
"zone",
"}",
"=",
"opts",
";",
"if",
"(",
"parsed",
"&&",
"Object",
".",
"keys",
"(",
"parsed",
")",
... | helper useful in turning the results of parsing into real dates by handling the zone options | [
"helper",
"useful",
"in",
"turning",
"the",
"results",
"of",
"parsing",
"into",
"real",
"dates",
"by",
"handling",
"the",
"zone",
"options"
] | 236f2badea297ee73421aa39a83e06177c1be6d0 | https://github.com/moment/luxon/blob/236f2badea297ee73421aa39a83e06177c1be6d0/src/datetime.js#L153-L170 |
3,447 | moment/luxon | src/datetime.js | normalizeUnit | function normalizeUnit(unit) {
const normalized = {
year: "year",
years: "year",
month: "month",
months: "month",
day: "day",
days: "day",
hour: "hour",
hours: "hour",
minute: "minute",
minutes: "minute",
second: "second",
seconds: "second",
millisecond: "millisecon... | javascript | function normalizeUnit(unit) {
const normalized = {
year: "year",
years: "year",
month: "month",
months: "month",
day: "day",
days: "day",
hour: "hour",
hours: "hour",
minute: "minute",
minutes: "minute",
second: "second",
seconds: "second",
millisecond: "millisecon... | [
"function",
"normalizeUnit",
"(",
"unit",
")",
"{",
"const",
"normalized",
"=",
"{",
"year",
":",
"\"year\"",
",",
"years",
":",
"\"year\"",
",",
"month",
":",
"\"month\"",
",",
"months",
":",
"\"month\"",
",",
"day",
":",
"\"day\"",
",",
"days",
":",
... | standardize case and plurality in units | [
"standardize",
"case",
"and",
"plurality",
"in",
"units"
] | 236f2badea297ee73421aa39a83e06177c1be6d0 | https://github.com/moment/luxon/blob/236f2badea297ee73421aa39a83e06177c1be6d0/src/datetime.js#L256-L285 |
3,448 | KaTeX/KaTeX | dockers/texcmp/texcmp.js | execFile | function execFile(cmd, args, opts) {
const deferred = Q.defer();
childProcess.execFile(cmd, args, opts, function(err, stdout, stderr) {
if (err) {
console.error("Error executing " + cmd + " " + args.join(" "));
console.error(stdout + stderr);
err.stdout = stdout;
... | javascript | function execFile(cmd, args, opts) {
const deferred = Q.defer();
childProcess.execFile(cmd, args, opts, function(err, stdout, stderr) {
if (err) {
console.error("Error executing " + cmd + " " + args.join(" "));
console.error(stdout + stderr);
err.stdout = stdout;
... | [
"function",
"execFile",
"(",
"cmd",
",",
"args",
",",
"opts",
")",
"{",
"const",
"deferred",
"=",
"Q",
".",
"defer",
"(",
")",
";",
"childProcess",
".",
"execFile",
"(",
"cmd",
",",
"args",
",",
"opts",
",",
"function",
"(",
"err",
",",
"stdout",
"... | Execute a given command, and return a promise to its output. Don't denodeify here, since fail branch needs access to stderr. | [
"Execute",
"a",
"given",
"command",
"and",
"return",
"a",
"promise",
"to",
"its",
"output",
".",
"Don",
"t",
"denodeify",
"here",
"since",
"fail",
"branch",
"needs",
"access",
"to",
"stderr",
"."
] | 17bfb247b88070267f3e5c7b21fe4a360fdf49d9 | https://github.com/KaTeX/KaTeX/blob/17bfb247b88070267f3e5c7b21fe4a360fdf49d9/dockers/texcmp/texcmp.js#L206-L220 |
3,449 | KaTeX/KaTeX | dockers/texcmp/texcmp.js | readPNG | function readPNG(file) {
const deferred = Q.defer();
const onerror = deferred.reject.bind(deferred);
const stream = fs.createReadStream(file);
stream.on("error", onerror);
pngparse.parseStream(stream, function(err, image) {
if (err) {
console.log("Failed to load " + file);
... | javascript | function readPNG(file) {
const deferred = Q.defer();
const onerror = deferred.reject.bind(deferred);
const stream = fs.createReadStream(file);
stream.on("error", onerror);
pngparse.parseStream(stream, function(err, image) {
if (err) {
console.log("Failed to load " + file);
... | [
"function",
"readPNG",
"(",
"file",
")",
"{",
"const",
"deferred",
"=",
"Q",
".",
"defer",
"(",
")",
";",
"const",
"onerror",
"=",
"deferred",
".",
"reject",
".",
"bind",
"(",
"deferred",
")",
";",
"const",
"stream",
"=",
"fs",
".",
"createReadStream",... | Read given file and parse it as a PNG file. | [
"Read",
"given",
"file",
"and",
"parse",
"it",
"as",
"a",
"PNG",
"file",
"."
] | 17bfb247b88070267f3e5c7b21fe4a360fdf49d9 | https://github.com/KaTeX/KaTeX/blob/17bfb247b88070267f3e5c7b21fe4a360fdf49d9/dockers/texcmp/texcmp.js#L223-L237 |
3,450 | KaTeX/KaTeX | dockers/texcmp/texcmp.js | fftImage | function fftImage(image) {
const real = createMatrix();
const imag = createMatrix();
let idx = 0;
const nchan = image.channels;
const alphachan = 1 - (nchan % 2);
const colorchan = nchan - alphachan;
for (let y = 0; y < image.height; ++y) {
for (let x = 0; x < image.width; ++x) {
... | javascript | function fftImage(image) {
const real = createMatrix();
const imag = createMatrix();
let idx = 0;
const nchan = image.channels;
const alphachan = 1 - (nchan % 2);
const colorchan = nchan - alphachan;
for (let y = 0; y < image.height; ++y) {
for (let x = 0; x < image.width; ++x) {
... | [
"function",
"fftImage",
"(",
"image",
")",
"{",
"const",
"real",
"=",
"createMatrix",
"(",
")",
";",
"const",
"imag",
"=",
"createMatrix",
"(",
")",
";",
"let",
"idx",
"=",
"0",
";",
"const",
"nchan",
"=",
"image",
".",
"channels",
";",
"const",
"alp... | Take a parsed image data structure and apply FFT transformation to it | [
"Take",
"a",
"parsed",
"image",
"data",
"structure",
"and",
"apply",
"FFT",
"transformation",
"to",
"it"
] | 17bfb247b88070267f3e5c7b21fe4a360fdf49d9 | https://github.com/KaTeX/KaTeX/blob/17bfb247b88070267f3e5c7b21fe4a360fdf49d9/dockers/texcmp/texcmp.js#L240-L266 |
3,451 | KaTeX/KaTeX | webpack.common.js | createConfig | function createConfig(target /*: Target */, dev /*: boolean */,
minimize /*: boolean */) /*: Object */ {
const cssLoaders /*: Array<Object> */ = [{loader: 'css-loader'}];
if (minimize) {
cssLoaders[0].options = {importLoaders: 1};
cssLoaders.push({
loader: 'postcss-loader',
... | javascript | function createConfig(target /*: Target */, dev /*: boolean */,
minimize /*: boolean */) /*: Object */ {
const cssLoaders /*: Array<Object> */ = [{loader: 'css-loader'}];
if (minimize) {
cssLoaders[0].options = {importLoaders: 1};
cssLoaders.push({
loader: 'postcss-loader',
... | [
"function",
"createConfig",
"(",
"target",
"/*: Target */",
",",
"dev",
"/*: boolean */",
",",
"minimize",
"/*: boolean */",
")",
"/*: Object */",
"{",
"const",
"cssLoaders",
"/*: Array<Object> */",
"=",
"[",
"{",
"loader",
":",
"'css-loader'",
"}",
"]",
";",
"if"... | Create a webpack config for given target | [
"Create",
"a",
"webpack",
"config",
"for",
"given",
"target"
] | 17bfb247b88070267f3e5c7b21fe4a360fdf49d9 | https://github.com/KaTeX/KaTeX/blob/17bfb247b88070267f3e5c7b21fe4a360fdf49d9/webpack.common.js#L53-L158 |
3,452 | KaTeX/KaTeX | contrib/mhchem/mhchem.js | function (tokens, stateMachine) {
// Recreate the argument string from KaTeX's array of tokens.
var str = "";
var expectedLoc = tokens[tokens.length - 1].loc.start
for (var i = tokens.length - 1; i >= 0; i--) {
if(tokens[i].loc.start > expectedLoc) {
// context.consumeArgs has eaten a spac... | javascript | function (tokens, stateMachine) {
// Recreate the argument string from KaTeX's array of tokens.
var str = "";
var expectedLoc = tokens[tokens.length - 1].loc.start
for (var i = tokens.length - 1; i >= 0; i--) {
if(tokens[i].loc.start > expectedLoc) {
// context.consumeArgs has eaten a spac... | [
"function",
"(",
"tokens",
",",
"stateMachine",
")",
"{",
"// Recreate the argument string from KaTeX's array of tokens.",
"var",
"str",
"=",
"\"\"",
";",
"var",
"expectedLoc",
"=",
"tokens",
"[",
"tokens",
".",
"length",
"-",
"1",
"]",
".",
"loc",
".",
"start",... | This is the main function for handing the \ce and \pu commands. It takes the argument to \ce or \pu and returns the corresponding TeX string. | [
"This",
"is",
"the",
"main",
"function",
"for",
"handing",
"the",
"\\",
"ce",
"and",
"\\",
"pu",
"commands",
".",
"It",
"takes",
"the",
"argument",
"to",
"\\",
"ce",
"or",
"\\",
"pu",
"and",
"returns",
"the",
"corresponding",
"TeX",
"string",
"."
] | 17bfb247b88070267f3e5c7b21fe4a360fdf49d9 | https://github.com/KaTeX/KaTeX/blob/17bfb247b88070267f3e5c7b21fe4a360fdf49d9/contrib/mhchem/mhchem.js#L77-L92 | |
3,453 | KaTeX/KaTeX | dockers/screenshotter/screenshotter.js | execFile | function execFile(cmd, args, opts) {
return new Promise(function(resolve, reject) {
childProcess.execFile(cmd, args, opts, function(err, stdout, stderr) {
if (err) {
console.error("Error executing " + cmd + " " + args.join(" "));
console.error(stdout + stderr);
... | javascript | function execFile(cmd, args, opts) {
return new Promise(function(resolve, reject) {
childProcess.execFile(cmd, args, opts, function(err, stdout, stderr) {
if (err) {
console.error("Error executing " + cmd + " " + args.join(" "));
console.error(stdout + stderr);
... | [
"function",
"execFile",
"(",
"cmd",
",",
"args",
",",
"opts",
")",
"{",
"return",
"new",
"Promise",
"(",
"function",
"(",
"resolve",
",",
"reject",
")",
"{",
"childProcess",
".",
"execFile",
"(",
"cmd",
",",
"args",
",",
"opts",
",",
"function",
"(",
... | Execute a given command, and return a promise to its output. | [
"Execute",
"a",
"given",
"command",
"and",
"return",
"a",
"promise",
"to",
"its",
"output",
"."
] | 17bfb247b88070267f3e5c7b21fe4a360fdf49d9 | https://github.com/KaTeX/KaTeX/blob/17bfb247b88070267f3e5c7b21fe4a360fdf49d9/dockers/screenshotter/screenshotter.js#L561-L575 |
3,454 | mattdesl/canvas-sketch | examples/experimental/webgl-2d.js | getNormalizedPrimitive2D | function getNormalizedPrimitive2D ({ positions, cells, normals, uvs }, opt = {}) {
// Default to assuming the positions are a unit circle/box/etc
normals = normals ? expandVectorList(normals) : positions.map(p => vec3.normalize([], expandVector(p)));
// Planar UV across bounding box of mesh
uvs = uvs ||... | javascript | function getNormalizedPrimitive2D ({ positions, cells, normals, uvs }, opt = {}) {
// Default to assuming the positions are a unit circle/box/etc
normals = normals ? expandVectorList(normals) : positions.map(p => vec3.normalize([], expandVector(p)));
// Planar UV across bounding box of mesh
uvs = uvs ||... | [
"function",
"getNormalizedPrimitive2D",
"(",
"{",
"positions",
",",
"cells",
",",
"normals",
",",
"uvs",
"}",
",",
"opt",
"=",
"{",
"}",
")",
"{",
"// Default to assuming the positions are a unit circle/box/etc",
"normals",
"=",
"normals",
"?",
"expandVectorList",
"... | A unit 2D rectangle, circle, etc | [
"A",
"unit",
"2D",
"rectangle",
"circle",
"etc"
] | 4addd0fe3fc053065ca8597ab204e43587c52879 | https://github.com/mattdesl/canvas-sketch/blob/4addd0fe3fc053065ca8597ab204e43587c52879/examples/experimental/webgl-2d.js#L177-L192 |
3,455 | mattdesl/canvas-sketch | examples/experimental/webgl-2d.js | getNormalizedPrimitive3D | function getNormalizedPrimitive3D ({ positions, cells, normals, uvs }, opt = {}) {
return {
positions,
uvs,
normals,
cells
};
} | javascript | function getNormalizedPrimitive3D ({ positions, cells, normals, uvs }, opt = {}) {
return {
positions,
uvs,
normals,
cells
};
} | [
"function",
"getNormalizedPrimitive3D",
"(",
"{",
"positions",
",",
"cells",
",",
"normals",
",",
"uvs",
"}",
",",
"opt",
"=",
"{",
"}",
")",
"{",
"return",
"{",
"positions",
",",
"uvs",
",",
"normals",
",",
"cells",
"}",
";",
"}"
] | A unit 3D sphere, torus, etc | [
"A",
"unit",
"3D",
"sphere",
"torus",
"etc"
] | 4addd0fe3fc053065ca8597ab204e43587c52879 | https://github.com/mattdesl/canvas-sketch/blob/4addd0fe3fc053065ca8597ab204e43587c52879/examples/experimental/webgl-2d.js#L195-L202 |
3,456 | google/draco | javascript/example/DRACOLoader.js | function(attributeName, skip) {
var skipDequantization = true;
if (typeof skip !== 'undefined')
skipDequantization = skip;
this.getAttributeOptions(attributeName).skipDequantization =
skipDequantization;
} | javascript | function(attributeName, skip) {
var skipDequantization = true;
if (typeof skip !== 'undefined')
skipDequantization = skip;
this.getAttributeOptions(attributeName).skipDequantization =
skipDequantization;
} | [
"function",
"(",
"attributeName",
",",
"skip",
")",
"{",
"var",
"skipDequantization",
"=",
"true",
";",
"if",
"(",
"typeof",
"skip",
"!==",
"'undefined'",
")",
"skipDequantization",
"=",
"skip",
";",
"this",
".",
"getAttributeOptions",
"(",
"attributeName",
")... | Skips dequantization for a specific attribute.
|attributeName| is the THREE.js name of the given attribute type.
The only currently supported |attributeName| is 'position', more may be
added in future. | [
"Skips",
"dequantization",
"for",
"a",
"specific",
"attribute",
".",
"|attributeName|",
"is",
"the",
"THREE",
".",
"js",
"name",
"of",
"the",
"given",
"attribute",
"type",
".",
"The",
"only",
"currently",
"supported",
"|attributeName|",
"is",
"position",
"more",... | 785c9c4aa2b952236c29ad639901dbbaf216da38 | https://github.com/google/draco/blob/785c9c4aa2b952236c29ad639901dbbaf216da38/javascript/example/DRACOLoader.js#L81-L87 | |
3,457 | google/draco | docs/assets/js/ASCIIMathML.js | initSymbols | function initSymbols() {
var i;
var symlen = AMsymbols.length;
for (i=0; i<symlen; i++) {
if (AMsymbols[i].tex) {
AMsymbols.push({input:AMsymbols[i].tex,
tag:AMsymbols[i].tag, output:AMsymbols[i].output, ttype:AMsymbols[i].ttype,
acc:(AMsymbols[i].acc||false)});
}
}
refreshSymbo... | javascript | function initSymbols() {
var i;
var symlen = AMsymbols.length;
for (i=0; i<symlen; i++) {
if (AMsymbols[i].tex) {
AMsymbols.push({input:AMsymbols[i].tex,
tag:AMsymbols[i].tag, output:AMsymbols[i].output, ttype:AMsymbols[i].ttype,
acc:(AMsymbols[i].acc||false)});
}
}
refreshSymbo... | [
"function",
"initSymbols",
"(",
")",
"{",
"var",
"i",
";",
"var",
"symlen",
"=",
"AMsymbols",
".",
"length",
";",
"for",
"(",
"i",
"=",
"0",
";",
"i",
"<",
"symlen",
";",
"i",
"++",
")",
"{",
"if",
"(",
"AMsymbols",
"[",
"i",
"]",
".",
"tex",
... | list of input symbols | [
"list",
"of",
"input",
"symbols"
] | 785c9c4aa2b952236c29ad639901dbbaf216da38 | https://github.com/google/draco/blob/785c9c4aa2b952236c29ad639901dbbaf216da38/docs/assets/js/ASCIIMathML.js#L475-L486 |
3,458 | material-components/material-components-web-react | scripts/release/cp-pkgs.js | cpTypes | function cpTypes(typeAsset) {
const {dir, base} = path.parse(typeAsset);
let destDir = dir.split('build/types/')[1];
destDir = destDir.split('/');
destDir.splice(2, 0, 'dist');
destDir = `${destDir.join('/')}/${base}`;
addTsIgnore(typeAsset);
return cpFile(typeAsset, destDir)
.then(() => console.log(`... | javascript | function cpTypes(typeAsset) {
const {dir, base} = path.parse(typeAsset);
let destDir = dir.split('build/types/')[1];
destDir = destDir.split('/');
destDir.splice(2, 0, 'dist');
destDir = `${destDir.join('/')}/${base}`;
addTsIgnore(typeAsset);
return cpFile(typeAsset, destDir)
.then(() => console.log(`... | [
"function",
"cpTypes",
"(",
"typeAsset",
")",
"{",
"const",
"{",
"dir",
",",
"base",
"}",
"=",
"path",
".",
"parse",
"(",
"typeAsset",
")",
";",
"let",
"destDir",
"=",
"dir",
".",
"split",
"(",
"'build/types/'",
")",
"[",
"1",
"]",
";",
"destDir",
... | takes assetPath, computes the destination file directory path and copies file into destination directory | [
"takes",
"assetPath",
"computes",
"the",
"destination",
"file",
"directory",
"path",
"and",
"copies",
"file",
"into",
"destination",
"directory"
] | 5ee9df0982d6cff893523c3e1e447b0f98bf8611 | https://github.com/material-components/material-components-web-react/blob/5ee9df0982d6cff893523c3e1e447b0f98bf8611/scripts/release/cp-pkgs.js#L96-L105 |
3,459 | jantimon/html-webpack-plugin | index.js | templateParametersGenerator | function templateParametersGenerator (compilation, assets, assetTags, options) {
const xhtml = options.xhtml;
assetTags.headTags.toString = function () {
return this.map((assetTagObject) => htmlTagObjectToString(assetTagObject, xhtml)).join('');
};
assetTags.bodyTags.toString = function () {
return this... | javascript | function templateParametersGenerator (compilation, assets, assetTags, options) {
const xhtml = options.xhtml;
assetTags.headTags.toString = function () {
return this.map((assetTagObject) => htmlTagObjectToString(assetTagObject, xhtml)).join('');
};
assetTags.bodyTags.toString = function () {
return this... | [
"function",
"templateParametersGenerator",
"(",
"compilation",
",",
"assets",
",",
"assetTags",
",",
"options",
")",
"{",
"const",
"xhtml",
"=",
"options",
".",
"xhtml",
";",
"assetTags",
".",
"headTags",
".",
"toString",
"=",
"function",
"(",
")",
"{",
"ret... | The default for options.templateParameter
Generate the template parameters
Generate the template parameters for the template function
@param {WebpackCompilation} compilation
@param {{
publicPath: string,
js: Array<string>,
css: Array<string>,
manifest?: string,
favicon?: string
}} assets
@param {{
headTags: HtmlTagObj... | [
"The",
"default",
"for",
"options",
".",
"templateParameter",
"Generate",
"the",
"template",
"parameters"
] | 38db64ae8805de37d038e0ee0f6dfa2a26e2163a | https://github.com/jantimon/html-webpack-plugin/blob/38db64ae8805de37d038e0ee0f6dfa2a26e2163a/index.js#L958-L975 |
3,460 | jantimon/html-webpack-plugin | lib/html-tags.js | createHtmlTagObject | function createHtmlTagObject (tagName, attributes, innerHTML) {
return {
tagName: tagName,
voidTag: voidTags.indexOf(tagName) !== -1,
attributes: attributes || {},
innerHTML: innerHTML
};
} | javascript | function createHtmlTagObject (tagName, attributes, innerHTML) {
return {
tagName: tagName,
voidTag: voidTags.indexOf(tagName) !== -1,
attributes: attributes || {},
innerHTML: innerHTML
};
} | [
"function",
"createHtmlTagObject",
"(",
"tagName",
",",
"attributes",
",",
"innerHTML",
")",
"{",
"return",
"{",
"tagName",
":",
"tagName",
",",
"voidTag",
":",
"voidTags",
".",
"indexOf",
"(",
"tagName",
")",
"!==",
"-",
"1",
",",
"attributes",
":",
"attr... | Static helper to create a tag object to be get injected into the dom
@param {string} tagName
the name of the tage e.g. 'div'
@param {{[attributeName: string]: string|boolean}} [attributes]
tag attributes e.g. `{ 'class': 'example', disabled: true }`
@param {string} [innerHTML]
@returns {HtmlTagObject} | [
"Static",
"helper",
"to",
"create",
"a",
"tag",
"object",
"to",
"be",
"get",
"injected",
"into",
"the",
"dom"
] | 38db64ae8805de37d038e0ee0f6dfa2a26e2163a | https://github.com/jantimon/html-webpack-plugin/blob/38db64ae8805de37d038e0ee0f6dfa2a26e2163a/lib/html-tags.js#L59-L66 |
3,461 | jantimon/html-webpack-plugin | lib/compiler.js | extractHelperFilesFromCompilation | function extractHelperFilesFromCompilation (mainCompilation, childCompilation, filename, childEntryChunks) {
const helperAssetNames = childEntryChunks.map((entryChunk, index) => {
return mainCompilation.mainTemplate.hooks.assetPath.call(filename, {
hash: childCompilation.hash,
chunk: entryChunk,
... | javascript | function extractHelperFilesFromCompilation (mainCompilation, childCompilation, filename, childEntryChunks) {
const helperAssetNames = childEntryChunks.map((entryChunk, index) => {
return mainCompilation.mainTemplate.hooks.assetPath.call(filename, {
hash: childCompilation.hash,
chunk: entryChunk,
... | [
"function",
"extractHelperFilesFromCompilation",
"(",
"mainCompilation",
",",
"childCompilation",
",",
"filename",
",",
"childEntryChunks",
")",
"{",
"const",
"helperAssetNames",
"=",
"childEntryChunks",
".",
"map",
"(",
"(",
"entryChunk",
",",
"index",
")",
"=>",
"... | The webpack child compilation will create files as a side effect.
This function will extract them and clean them up so they won't be written to disk.
Returns the source code of the compiled templates as string
@returns Array<string> | [
"The",
"webpack",
"child",
"compilation",
"will",
"create",
"files",
"as",
"a",
"side",
"effect",
".",
"This",
"function",
"will",
"extract",
"them",
"and",
"clean",
"them",
"up",
"so",
"they",
"won",
"t",
"be",
"written",
"to",
"disk",
"."
] | 38db64ae8805de37d038e0ee0f6dfa2a26e2163a | https://github.com/jantimon/html-webpack-plugin/blob/38db64ae8805de37d038e0ee0f6dfa2a26e2163a/lib/compiler.js#L180-L198 |
3,462 | jantimon/html-webpack-plugin | lib/compiler.js | getChildCompiler | function getChildCompiler (mainCompiler) {
const cachedChildCompiler = childCompilerCache.get(mainCompiler);
if (cachedChildCompiler) {
return cachedChildCompiler;
}
const newCompiler = new HtmlWebpackChildCompiler();
childCompilerCache.set(mainCompiler, newCompiler);
return newCompiler;
} | javascript | function getChildCompiler (mainCompiler) {
const cachedChildCompiler = childCompilerCache.get(mainCompiler);
if (cachedChildCompiler) {
return cachedChildCompiler;
}
const newCompiler = new HtmlWebpackChildCompiler();
childCompilerCache.set(mainCompiler, newCompiler);
return newCompiler;
} | [
"function",
"getChildCompiler",
"(",
"mainCompiler",
")",
"{",
"const",
"cachedChildCompiler",
"=",
"childCompilerCache",
".",
"get",
"(",
"mainCompiler",
")",
";",
"if",
"(",
"cachedChildCompiler",
")",
"{",
"return",
"cachedChildCompiler",
";",
"}",
"const",
"ne... | Get child compiler from cache or a new child compiler for the given mainCompilation
@param {WebpackCompiler} mainCompiler | [
"Get",
"child",
"compiler",
"from",
"cache",
"or",
"a",
"new",
"child",
"compiler",
"for",
"the",
"given",
"mainCompilation"
] | 38db64ae8805de37d038e0ee0f6dfa2a26e2163a | https://github.com/jantimon/html-webpack-plugin/blob/38db64ae8805de37d038e0ee0f6dfa2a26e2163a/lib/compiler.js#L210-L218 |
3,463 | jantimon/html-webpack-plugin | lib/compiler.js | clearCache | function clearCache (mainCompiler) {
const childCompiler = getChildCompiler(mainCompiler);
// If this childCompiler was already used
// remove the entire childCompiler from the cache
if (childCompiler.isCompiling() || childCompiler.didCompile()) {
childCompilerCache.delete(mainCompiler);
}
} | javascript | function clearCache (mainCompiler) {
const childCompiler = getChildCompiler(mainCompiler);
// If this childCompiler was already used
// remove the entire childCompiler from the cache
if (childCompiler.isCompiling() || childCompiler.didCompile()) {
childCompilerCache.delete(mainCompiler);
}
} | [
"function",
"clearCache",
"(",
"mainCompiler",
")",
"{",
"const",
"childCompiler",
"=",
"getChildCompiler",
"(",
"mainCompiler",
")",
";",
"// If this childCompiler was already used",
"// remove the entire childCompiler from the cache",
"if",
"(",
"childCompiler",
".",
"isCom... | Remove the childCompiler from the cache
@param {WebpackCompiler} mainCompiler | [
"Remove",
"the",
"childCompiler",
"from",
"the",
"cache"
] | 38db64ae8805de37d038e0ee0f6dfa2a26e2163a | https://github.com/jantimon/html-webpack-plugin/blob/38db64ae8805de37d038e0ee0f6dfa2a26e2163a/lib/compiler.js#L225-L232 |
3,464 | jantimon/html-webpack-plugin | lib/compiler.js | addTemplateToCompiler | function addTemplateToCompiler (mainCompiler, templatePath) {
const childCompiler = getChildCompiler(mainCompiler);
const isNew = childCompiler.addTemplate(templatePath);
if (isNew) {
clearCache(mainCompiler);
}
} | javascript | function addTemplateToCompiler (mainCompiler, templatePath) {
const childCompiler = getChildCompiler(mainCompiler);
const isNew = childCompiler.addTemplate(templatePath);
if (isNew) {
clearCache(mainCompiler);
}
} | [
"function",
"addTemplateToCompiler",
"(",
"mainCompiler",
",",
"templatePath",
")",
"{",
"const",
"childCompiler",
"=",
"getChildCompiler",
"(",
"mainCompiler",
")",
";",
"const",
"isNew",
"=",
"childCompiler",
".",
"addTemplate",
"(",
"templatePath",
")",
";",
"i... | Register a template for the current main compiler
@param {WebpackCompiler} mainCompiler
@param {string} templatePath | [
"Register",
"a",
"template",
"for",
"the",
"current",
"main",
"compiler"
] | 38db64ae8805de37d038e0ee0f6dfa2a26e2163a | https://github.com/jantimon/html-webpack-plugin/blob/38db64ae8805de37d038e0ee0f6dfa2a26e2163a/lib/compiler.js#L239-L245 |
3,465 | jantimon/html-webpack-plugin | lib/compiler.js | compileTemplate | function compileTemplate (templatePath, outputFilename, mainCompilation) {
const childCompiler = getChildCompiler(mainCompilation.compiler);
return childCompiler.compileTemplates(mainCompilation).then((compiledTemplates) => {
if (!compiledTemplates[templatePath]) console.log(Object.keys(compiledTemplates), temp... | javascript | function compileTemplate (templatePath, outputFilename, mainCompilation) {
const childCompiler = getChildCompiler(mainCompilation.compiler);
return childCompiler.compileTemplates(mainCompilation).then((compiledTemplates) => {
if (!compiledTemplates[templatePath]) console.log(Object.keys(compiledTemplates), temp... | [
"function",
"compileTemplate",
"(",
"templatePath",
",",
"outputFilename",
",",
"mainCompilation",
")",
"{",
"const",
"childCompiler",
"=",
"getChildCompiler",
"(",
"mainCompilation",
".",
"compiler",
")",
";",
"return",
"childCompiler",
".",
"compileTemplates",
"(",
... | Starts the compilation for all templates.
This has to be called once all templates where added.
If this function is called multiple times it will use a cache inside
the childCompiler
@param {string} templatePath
@param {string} outputFilename
@param {WebpackCompilation} mainCompilation | [
"Starts",
"the",
"compilation",
"for",
"all",
"templates",
".",
"This",
"has",
"to",
"be",
"called",
"once",
"all",
"templates",
"where",
"added",
"."
] | 38db64ae8805de37d038e0ee0f6dfa2a26e2163a | https://github.com/jantimon/html-webpack-plugin/blob/38db64ae8805de37d038e0ee0f6dfa2a26e2163a/lib/compiler.js#L258-L277 |
3,466 | jantimon/html-webpack-plugin | lib/compiler.js | hasOutDatedTemplateCache | function hasOutDatedTemplateCache (mainCompilation) {
const childCompiler = getChildCompiler(mainCompilation.compiler);
/**
* @type {WeakMap<HtmlWebpackChildCompiler, boolean>|undefined}
*/
let hasOutdatedChildCompilerDependenciesMap = hasOutdatedCompilationDependenciesMap.get(mainCompilation);
// Create ... | javascript | function hasOutDatedTemplateCache (mainCompilation) {
const childCompiler = getChildCompiler(mainCompilation.compiler);
/**
* @type {WeakMap<HtmlWebpackChildCompiler, boolean>|undefined}
*/
let hasOutdatedChildCompilerDependenciesMap = hasOutdatedCompilationDependenciesMap.get(mainCompilation);
// Create ... | [
"function",
"hasOutDatedTemplateCache",
"(",
"mainCompilation",
")",
"{",
"const",
"childCompiler",
"=",
"getChildCompiler",
"(",
"mainCompilation",
".",
"compiler",
")",
";",
"/**\n * @type {WeakMap<HtmlWebpackChildCompiler, boolean>|undefined}\n */",
"let",
"hasOutdatedChil... | Returns `true` if the file dependencies of the current childCompiler
for the given mainCompilation are outdated.
Uses the `hasOutdatedCompilationDependenciesMap` cache if possible.
@param {WebpackCompilation} mainCompilation
@returns {boolean} | [
"Returns",
"true",
"if",
"the",
"file",
"dependencies",
"of",
"the",
"current",
"childCompiler",
"for",
"the",
"given",
"mainCompilation",
"are",
"outdated",
"."
] | 38db64ae8805de37d038e0ee0f6dfa2a26e2163a | https://github.com/jantimon/html-webpack-plugin/blob/38db64ae8805de37d038e0ee0f6dfa2a26e2163a/lib/compiler.js#L303-L324 |
3,467 | jantimon/html-webpack-plugin | lib/compiler.js | isChildCompilerCacheOutdated | function isChildCompilerCacheOutdated (mainCompilation, childCompiler) {
// If the compilation was never run there is no invalid cache
if (!childCompiler.compilationStartedTimestamp) {
return false;
}
// Check if any dependent file was changed after the last compilation
const fileTimestamps = mainCompilat... | javascript | function isChildCompilerCacheOutdated (mainCompilation, childCompiler) {
// If the compilation was never run there is no invalid cache
if (!childCompiler.compilationStartedTimestamp) {
return false;
}
// Check if any dependent file was changed after the last compilation
const fileTimestamps = mainCompilat... | [
"function",
"isChildCompilerCacheOutdated",
"(",
"mainCompilation",
",",
"childCompiler",
")",
"{",
"// If the compilation was never run there is no invalid cache",
"if",
"(",
"!",
"childCompiler",
".",
"compilationStartedTimestamp",
")",
"{",
"return",
"false",
";",
"}",
"... | Returns `true` if the file dependencies of the given childCompiler are outdated.
@param {WebpackCompilation} mainCompilation
@param {HtmlWebpackChildCompiler} childCompiler
@returns {boolean} | [
"Returns",
"true",
"if",
"the",
"file",
"dependencies",
"of",
"the",
"given",
"childCompiler",
"are",
"outdated",
"."
] | 38db64ae8805de37d038e0ee0f6dfa2a26e2163a | https://github.com/jantimon/html-webpack-plugin/blob/38db64ae8805de37d038e0ee0f6dfa2a26e2163a/lib/compiler.js#L333-L348 |
3,468 | jantimon/html-webpack-plugin | lib/hooks.js | getHtmlWebpackPluginHooks | function getHtmlWebpackPluginHooks (compilation) {
let hooks = htmlWebpackPluginHooksMap.get(compilation);
// Setup the hooks only once
if (hooks === undefined) {
hooks = createHtmlWebpackPluginHooks();
htmlWebpackPluginHooksMap.set(compilation, hooks);
}
return hooks;
} | javascript | function getHtmlWebpackPluginHooks (compilation) {
let hooks = htmlWebpackPluginHooksMap.get(compilation);
// Setup the hooks only once
if (hooks === undefined) {
hooks = createHtmlWebpackPluginHooks();
htmlWebpackPluginHooksMap.set(compilation, hooks);
}
return hooks;
} | [
"function",
"getHtmlWebpackPluginHooks",
"(",
"compilation",
")",
"{",
"let",
"hooks",
"=",
"htmlWebpackPluginHooksMap",
".",
"get",
"(",
"compilation",
")",
";",
"// Setup the hooks only once",
"if",
"(",
"hooks",
"===",
"undefined",
")",
"{",
"hooks",
"=",
"crea... | Returns all public hooks of the html webpack plugin for the given compilation
@param {WebpackCompilation} compilation
@returns {HtmlWebpackPluginHooks} | [
"Returns",
"all",
"public",
"hooks",
"of",
"the",
"html",
"webpack",
"plugin",
"for",
"the",
"given",
"compilation"
] | 38db64ae8805de37d038e0ee0f6dfa2a26e2163a | https://github.com/jantimon/html-webpack-plugin/blob/38db64ae8805de37d038e0ee0f6dfa2a26e2163a/lib/hooks.js#L77-L85 |
3,469 | jantimon/html-webpack-plugin | lib/hooks.js | createHtmlWebpackPluginHooks | function createHtmlWebpackPluginHooks () {
return {
beforeAssetTagGeneration: new AsyncSeriesWaterfallHook(['pluginArgs']),
alterAssetTags: new AsyncSeriesWaterfallHook(['pluginArgs']),
alterAssetTagGroups: new AsyncSeriesWaterfallHook(['pluginArgs']),
afterTemplateExecution: new AsyncSeriesWaterfallH... | javascript | function createHtmlWebpackPluginHooks () {
return {
beforeAssetTagGeneration: new AsyncSeriesWaterfallHook(['pluginArgs']),
alterAssetTags: new AsyncSeriesWaterfallHook(['pluginArgs']),
alterAssetTagGroups: new AsyncSeriesWaterfallHook(['pluginArgs']),
afterTemplateExecution: new AsyncSeriesWaterfallH... | [
"function",
"createHtmlWebpackPluginHooks",
"(",
")",
"{",
"return",
"{",
"beforeAssetTagGeneration",
":",
"new",
"AsyncSeriesWaterfallHook",
"(",
"[",
"'pluginArgs'",
"]",
")",
",",
"alterAssetTags",
":",
"new",
"AsyncSeriesWaterfallHook",
"(",
"[",
"'pluginArgs'",
"... | Add hooks to the webpack compilation object to allow foreign plugins to
extend the HtmlWebpackPlugin
@returns {HtmlWebpackPluginHooks} | [
"Add",
"hooks",
"to",
"the",
"webpack",
"compilation",
"object",
"to",
"allow",
"foreign",
"plugins",
"to",
"extend",
"the",
"HtmlWebpackPlugin"
] | 38db64ae8805de37d038e0ee0f6dfa2a26e2163a | https://github.com/jantimon/html-webpack-plugin/blob/38db64ae8805de37d038e0ee0f6dfa2a26e2163a/lib/hooks.js#L93-L102 |
3,470 | archriss/react-native-snap-carousel | example/src/utils/animations.js | scrollInterpolator1 | function scrollInterpolator1 (index, carouselProps) {
const range = [3, 2, 1, 0, -1];
const inputRange = getInputRangeFromIndexes(range, index, carouselProps);
const outputRange = range;
return { inputRange, outputRange };
} | javascript | function scrollInterpolator1 (index, carouselProps) {
const range = [3, 2, 1, 0, -1];
const inputRange = getInputRangeFromIndexes(range, index, carouselProps);
const outputRange = range;
return { inputRange, outputRange };
} | [
"function",
"scrollInterpolator1",
"(",
"index",
",",
"carouselProps",
")",
"{",
"const",
"range",
"=",
"[",
"3",
",",
"2",
",",
"1",
",",
"0",
",",
"-",
"1",
"]",
";",
"const",
"inputRange",
"=",
"getInputRangeFromIndexes",
"(",
"range",
",",
"index",
... | Photo album effect | [
"Photo",
"album",
"effect"
] | 85980e5177a75d393a1b38480800753282148c50 | https://github.com/archriss/react-native-snap-carousel/blob/85980e5177a75d393a1b38480800753282148c50/example/src/utils/animations.js#L4-L10 |
3,471 | feross/simple-peer | index.js | flattenValues | function flattenValues (report) {
if (Object.prototype.toString.call(report.values) === '[object Array]') {
report.values.forEach(function (value) {
Object.assign(report, value)
})
}
return report
} | javascript | function flattenValues (report) {
if (Object.prototype.toString.call(report.values) === '[object Array]') {
report.values.forEach(function (value) {
Object.assign(report, value)
})
}
return report
} | [
"function",
"flattenValues",
"(",
"report",
")",
"{",
"if",
"(",
"Object",
".",
"prototype",
".",
"toString",
".",
"call",
"(",
"report",
".",
"values",
")",
"===",
"'[object Array]'",
")",
"{",
"report",
".",
"values",
".",
"forEach",
"(",
"function",
"... | statreports can come with a value array instead of properties | [
"statreports",
"can",
"come",
"with",
"a",
"value",
"array",
"instead",
"of",
"properties"
] | 3ed91bf631c4bf9c3b4bf5a85d004bb70d621707 | https://github.com/feross/simple-peer/blob/3ed91bf631c4bf9c3b4bf5a85d004bb70d621707/index.js#L742-L749 |
3,472 | marcuswestin/store.js | src/store-engine.js | function(key, optionalDefaultValue) {
var data = this.storage.read(this._namespacePrefix + key)
return this._deserialize(data, optionalDefaultValue)
} | javascript | function(key, optionalDefaultValue) {
var data = this.storage.read(this._namespacePrefix + key)
return this._deserialize(data, optionalDefaultValue)
} | [
"function",
"(",
"key",
",",
"optionalDefaultValue",
")",
"{",
"var",
"data",
"=",
"this",
".",
"storage",
".",
"read",
"(",
"this",
".",
"_namespacePrefix",
"+",
"key",
")",
"return",
"this",
".",
"_deserialize",
"(",
"data",
",",
"optionalDefaultValue",
... | get returns the value of the given key. If that value is undefined, it returns optionalDefaultValue instead. | [
"get",
"returns",
"the",
"value",
"of",
"the",
"given",
"key",
".",
"If",
"that",
"value",
"is",
"undefined",
"it",
"returns",
"optionalDefaultValue",
"instead",
"."
] | b8e22fea8738fc19da4d9e7dbf1cda6e5185c481 | https://github.com/marcuswestin/store.js/blob/b8e22fea8738fc19da4d9e7dbf1cda6e5185c481/src/store-engine.js#L21-L24 | |
3,473 | marcuswestin/store.js | src/store-engine.js | function(callback) {
var self = this
this.storage.each(function(val, namespacedKey) {
callback.call(self, self._deserialize(val), (namespacedKey || '').replace(self._namespaceRegexp, ''))
})
} | javascript | function(callback) {
var self = this
this.storage.each(function(val, namespacedKey) {
callback.call(self, self._deserialize(val), (namespacedKey || '').replace(self._namespaceRegexp, ''))
})
} | [
"function",
"(",
"callback",
")",
"{",
"var",
"self",
"=",
"this",
"this",
".",
"storage",
".",
"each",
"(",
"function",
"(",
"val",
",",
"namespacedKey",
")",
"{",
"callback",
".",
"call",
"(",
"self",
",",
"self",
".",
"_deserialize",
"(",
"val",
"... | each will call the given callback once for each key-value pair in this store. | [
"each",
"will",
"call",
"the",
"given",
"callback",
"once",
"for",
"each",
"key",
"-",
"value",
"pair",
"in",
"this",
"store",
"."
] | b8e22fea8738fc19da4d9e7dbf1cda6e5185c481 | https://github.com/marcuswestin/store.js/blob/b8e22fea8738fc19da4d9e7dbf1cda6e5185c481/src/store-engine.js#L43-L48 | |
3,474 | marcuswestin/store.js | src/store-engine.js | super_fn | function super_fn() {
if (!oldFn) { return }
each(arguments, function(arg, i) {
args[i] = arg
})
return oldFn.apply(self, args)
} | javascript | function super_fn() {
if (!oldFn) { return }
each(arguments, function(arg, i) {
args[i] = arg
})
return oldFn.apply(self, args)
} | [
"function",
"super_fn",
"(",
")",
"{",
"if",
"(",
"!",
"oldFn",
")",
"{",
"return",
"}",
"each",
"(",
"arguments",
",",
"function",
"(",
"arg",
",",
"i",
")",
"{",
"args",
"[",
"i",
"]",
"=",
"arg",
"}",
")",
"return",
"oldFn",
".",
"apply",
"(... | super_fn calls the old function which was overwritten by this mixin. | [
"super_fn",
"calls",
"the",
"old",
"function",
"which",
"was",
"overwritten",
"by",
"this",
"mixin",
"."
] | b8e22fea8738fc19da4d9e7dbf1cda6e5185c481 | https://github.com/marcuswestin/store.js/blob/b8e22fea8738fc19da4d9e7dbf1cda6e5185c481/src/store-engine.js#L128-L134 |
3,475 | marcuswestin/store.js | plugins/events.js | set | function set(super_fn, key, val) {
var oldVal = this.get(key)
super_fn()
pubsub.fire(key, val, oldVal)
} | javascript | function set(super_fn, key, val) {
var oldVal = this.get(key)
super_fn()
pubsub.fire(key, val, oldVal)
} | [
"function",
"set",
"(",
"super_fn",
",",
"key",
",",
"val",
")",
"{",
"var",
"oldVal",
"=",
"this",
".",
"get",
"(",
"key",
")",
"super_fn",
"(",
")",
"pubsub",
".",
"fire",
"(",
"key",
",",
"val",
",",
"oldVal",
")",
"}"
] | overwrite function to fire when appropriate | [
"overwrite",
"function",
"to",
"fire",
"when",
"appropriate"
] | b8e22fea8738fc19da4d9e7dbf1cda6e5185c481 | https://github.com/marcuswestin/store.js/blob/b8e22fea8738fc19da4d9e7dbf1cda6e5185c481/plugins/events.js#L34-L38 |
3,476 | sparksuite/simplemde-markdown-editor | src/js/simplemde.js | fixShortcut | function fixShortcut(name) {
if(isMac) {
name = name.replace("Ctrl", "Cmd");
} else {
name = name.replace("Cmd", "Ctrl");
}
return name;
} | javascript | function fixShortcut(name) {
if(isMac) {
name = name.replace("Ctrl", "Cmd");
} else {
name = name.replace("Cmd", "Ctrl");
}
return name;
} | [
"function",
"fixShortcut",
"(",
"name",
")",
"{",
"if",
"(",
"isMac",
")",
"{",
"name",
"=",
"name",
".",
"replace",
"(",
"\"Ctrl\"",
",",
"\"Cmd\"",
")",
";",
"}",
"else",
"{",
"name",
"=",
"name",
".",
"replace",
"(",
"\"Cmd\"",
",",
"\"Ctrl\"",
... | Fix shortcut. Mac use Command, others use Ctrl. | [
"Fix",
"shortcut",
".",
"Mac",
"use",
"Command",
"others",
"use",
"Ctrl",
"."
] | 6abda7ab68cc20f4aca870eb243747951b90ab04 | https://github.com/sparksuite/simplemde-markdown-editor/blob/6abda7ab68cc20f4aca870eb243747951b90ab04/src/js/simplemde.js#L84-L91 |
3,477 | sparksuite/simplemde-markdown-editor | src/js/simplemde.js | getState | function getState(cm, pos) {
pos = pos || cm.getCursor("start");
var stat = cm.getTokenAt(pos);
if(!stat.type) return {};
var types = stat.type.split(" ");
var ret = {},
data, text;
for(var i = 0; i < types.length; i++) {
data = types[i];
if(data === "strong") {
ret.bold = true;
} else if(data === "v... | javascript | function getState(cm, pos) {
pos = pos || cm.getCursor("start");
var stat = cm.getTokenAt(pos);
if(!stat.type) return {};
var types = stat.type.split(" ");
var ret = {},
data, text;
for(var i = 0; i < types.length; i++) {
data = types[i];
if(data === "strong") {
ret.bold = true;
} else if(data === "v... | [
"function",
"getState",
"(",
"cm",
",",
"pos",
")",
"{",
"pos",
"=",
"pos",
"||",
"cm",
".",
"getCursor",
"(",
"\"start\"",
")",
";",
"var",
"stat",
"=",
"cm",
".",
"getTokenAt",
"(",
"pos",
")",
";",
"if",
"(",
"!",
"stat",
".",
"type",
")",
"... | The state of CodeMirror at the given position. | [
"The",
"state",
"of",
"CodeMirror",
"at",
"the",
"given",
"position",
"."
] | 6abda7ab68cc20f4aca870eb243747951b90ab04 | https://github.com/sparksuite/simplemde-markdown-editor/blob/6abda7ab68cc20f4aca870eb243747951b90ab04/src/js/simplemde.js#L140-L179 |
3,478 | sparksuite/simplemde-markdown-editor | src/js/simplemde.js | toggleCodeBlock | function toggleCodeBlock(editor) {
var fenceCharsToInsert = editor.options.blockStyles.code;
function fencing_line(line) {
/* return true, if this is a ``` or ~~~ line */
if(typeof line !== "object") {
throw "fencing_line() takes a 'line' object (not a line number, or line text). Got: " + typeof line + ": " ... | javascript | function toggleCodeBlock(editor) {
var fenceCharsToInsert = editor.options.blockStyles.code;
function fencing_line(line) {
/* return true, if this is a ``` or ~~~ line */
if(typeof line !== "object") {
throw "fencing_line() takes a 'line' object (not a line number, or line text). Got: " + typeof line + ": " ... | [
"function",
"toggleCodeBlock",
"(",
"editor",
")",
"{",
"var",
"fenceCharsToInsert",
"=",
"editor",
".",
"options",
".",
"blockStyles",
".",
"code",
";",
"function",
"fencing_line",
"(",
"line",
")",
"{",
"/* return true, if this is a ``` or ~~~ line */",
"if",
"(",... | Action for toggling code block. | [
"Action",
"for",
"toggling",
"code",
"block",
"."
] | 6abda7ab68cc20f4aca870eb243747951b90ab04 | https://github.com/sparksuite/simplemde-markdown-editor/blob/6abda7ab68cc20f4aca870eb243747951b90ab04/src/js/simplemde.js#L256-L537 |
3,479 | sparksuite/simplemde-markdown-editor | src/js/simplemde.js | drawLink | function drawLink(editor) {
var cm = editor.codemirror;
var stat = getState(cm);
var options = editor.options;
var url = "http://";
if(options.promptURLs) {
url = prompt(options.promptTexts.link);
if(!url) {
return false;
}
}
_replaceSelection(cm, stat.link, options.insertTexts.link, url);
} | javascript | function drawLink(editor) {
var cm = editor.codemirror;
var stat = getState(cm);
var options = editor.options;
var url = "http://";
if(options.promptURLs) {
url = prompt(options.promptTexts.link);
if(!url) {
return false;
}
}
_replaceSelection(cm, stat.link, options.insertTexts.link, url);
} | [
"function",
"drawLink",
"(",
"editor",
")",
"{",
"var",
"cm",
"=",
"editor",
".",
"codemirror",
";",
"var",
"stat",
"=",
"getState",
"(",
"cm",
")",
";",
"var",
"options",
"=",
"editor",
".",
"options",
";",
"var",
"url",
"=",
"\"http://\"",
";",
"if... | Action for drawing a link. | [
"Action",
"for",
"drawing",
"a",
"link",
"."
] | 6abda7ab68cc20f4aca870eb243747951b90ab04 | https://github.com/sparksuite/simplemde-markdown-editor/blob/6abda7ab68cc20f4aca870eb243747951b90ab04/src/js/simplemde.js#L616-L628 |
3,480 | sparksuite/simplemde-markdown-editor | src/js/simplemde.js | drawImage | function drawImage(editor) {
var cm = editor.codemirror;
var stat = getState(cm);
var options = editor.options;
var url = "http://";
if(options.promptURLs) {
url = prompt(options.promptTexts.image);
if(!url) {
return false;
}
}
_replaceSelection(cm, stat.image, options.insertTexts.image, url);
} | javascript | function drawImage(editor) {
var cm = editor.codemirror;
var stat = getState(cm);
var options = editor.options;
var url = "http://";
if(options.promptURLs) {
url = prompt(options.promptTexts.image);
if(!url) {
return false;
}
}
_replaceSelection(cm, stat.image, options.insertTexts.image, url);
} | [
"function",
"drawImage",
"(",
"editor",
")",
"{",
"var",
"cm",
"=",
"editor",
".",
"codemirror",
";",
"var",
"stat",
"=",
"getState",
"(",
"cm",
")",
";",
"var",
"options",
"=",
"editor",
".",
"options",
";",
"var",
"url",
"=",
"\"http://\"",
";",
"i... | Action for drawing an img. | [
"Action",
"for",
"drawing",
"an",
"img",
"."
] | 6abda7ab68cc20f4aca870eb243747951b90ab04 | https://github.com/sparksuite/simplemde-markdown-editor/blob/6abda7ab68cc20f4aca870eb243747951b90ab04/src/js/simplemde.js#L633-L645 |
3,481 | sparksuite/simplemde-markdown-editor | src/js/simplemde.js | drawTable | function drawTable(editor) {
var cm = editor.codemirror;
var stat = getState(cm);
var options = editor.options;
_replaceSelection(cm, stat.table, options.insertTexts.table);
} | javascript | function drawTable(editor) {
var cm = editor.codemirror;
var stat = getState(cm);
var options = editor.options;
_replaceSelection(cm, stat.table, options.insertTexts.table);
} | [
"function",
"drawTable",
"(",
"editor",
")",
"{",
"var",
"cm",
"=",
"editor",
".",
"codemirror",
";",
"var",
"stat",
"=",
"getState",
"(",
"cm",
")",
";",
"var",
"options",
"=",
"editor",
".",
"options",
";",
"_replaceSelection",
"(",
"cm",
",",
"stat"... | Action for drawing a table. | [
"Action",
"for",
"drawing",
"a",
"table",
"."
] | 6abda7ab68cc20f4aca870eb243747951b90ab04 | https://github.com/sparksuite/simplemde-markdown-editor/blob/6abda7ab68cc20f4aca870eb243747951b90ab04/src/js/simplemde.js#L650-L655 |
3,482 | sparksuite/simplemde-markdown-editor | src/js/simplemde.js | drawHorizontalRule | function drawHorizontalRule(editor) {
var cm = editor.codemirror;
var stat = getState(cm);
var options = editor.options;
_replaceSelection(cm, stat.image, options.insertTexts.horizontalRule);
} | javascript | function drawHorizontalRule(editor) {
var cm = editor.codemirror;
var stat = getState(cm);
var options = editor.options;
_replaceSelection(cm, stat.image, options.insertTexts.horizontalRule);
} | [
"function",
"drawHorizontalRule",
"(",
"editor",
")",
"{",
"var",
"cm",
"=",
"editor",
".",
"codemirror",
";",
"var",
"stat",
"=",
"getState",
"(",
"cm",
")",
";",
"var",
"options",
"=",
"editor",
".",
"options",
";",
"_replaceSelection",
"(",
"cm",
",",... | Action for drawing a horizontal rule. | [
"Action",
"for",
"drawing",
"a",
"horizontal",
"rule",
"."
] | 6abda7ab68cc20f4aca870eb243747951b90ab04 | https://github.com/sparksuite/simplemde-markdown-editor/blob/6abda7ab68cc20f4aca870eb243747951b90ab04/src/js/simplemde.js#L660-L665 |
3,483 | sparksuite/simplemde-markdown-editor | src/js/simplemde.js | togglePreview | function togglePreview(editor) {
var cm = editor.codemirror;
var wrapper = cm.getWrapperElement();
var toolbar_div = wrapper.previousSibling;
var toolbar = editor.options.toolbar ? editor.toolbarElements.preview : false;
var preview = wrapper.lastChild;
if(!preview || !/editor-preview/.test(preview.className)) {
... | javascript | function togglePreview(editor) {
var cm = editor.codemirror;
var wrapper = cm.getWrapperElement();
var toolbar_div = wrapper.previousSibling;
var toolbar = editor.options.toolbar ? editor.toolbarElements.preview : false;
var preview = wrapper.lastChild;
if(!preview || !/editor-preview/.test(preview.className)) {
... | [
"function",
"togglePreview",
"(",
"editor",
")",
"{",
"var",
"cm",
"=",
"editor",
".",
"codemirror",
";",
"var",
"wrapper",
"=",
"cm",
".",
"getWrapperElement",
"(",
")",
";",
"var",
"toolbar_div",
"=",
"wrapper",
".",
"previousSibling",
";",
"var",
"toolb... | Preview action. | [
"Preview",
"action",
"."
] | 6abda7ab68cc20f4aca870eb243747951b90ab04 | https://github.com/sparksuite/simplemde-markdown-editor/blob/6abda7ab68cc20f4aca870eb243747951b90ab04/src/js/simplemde.js#L752-L789 |
3,484 | sparksuite/simplemde-markdown-editor | src/js/simplemde.js | _mergeProperties | function _mergeProperties(target, source) {
for(var property in source) {
if(source.hasOwnProperty(property)) {
if(source[property] instanceof Array) {
target[property] = source[property].concat(target[property] instanceof Array ? target[property] : []);
} else if(
source[property] !== null &&
type... | javascript | function _mergeProperties(target, source) {
for(var property in source) {
if(source.hasOwnProperty(property)) {
if(source[property] instanceof Array) {
target[property] = source[property].concat(target[property] instanceof Array ? target[property] : []);
} else if(
source[property] !== null &&
type... | [
"function",
"_mergeProperties",
"(",
"target",
",",
"source",
")",
"{",
"for",
"(",
"var",
"property",
"in",
"source",
")",
"{",
"if",
"(",
"source",
".",
"hasOwnProperty",
"(",
"property",
")",
")",
"{",
"if",
"(",
"source",
"[",
"property",
"]",
"ins... | Merge the properties of one object into another. | [
"Merge",
"the",
"properties",
"of",
"one",
"object",
"into",
"another",
"."
] | 6abda7ab68cc20f4aca870eb243747951b90ab04 | https://github.com/sparksuite/simplemde-markdown-editor/blob/6abda7ab68cc20f4aca870eb243747951b90ab04/src/js/simplemde.js#L1024-L1042 |
3,485 | sparksuite/simplemde-markdown-editor | src/js/simplemde.js | extend | function extend(target) {
for(var i = 1; i < arguments.length; i++) {
target = _mergeProperties(target, arguments[i]);
}
return target;
} | javascript | function extend(target) {
for(var i = 1; i < arguments.length; i++) {
target = _mergeProperties(target, arguments[i]);
}
return target;
} | [
"function",
"extend",
"(",
"target",
")",
"{",
"for",
"(",
"var",
"i",
"=",
"1",
";",
"i",
"<",
"arguments",
".",
"length",
";",
"i",
"++",
")",
"{",
"target",
"=",
"_mergeProperties",
"(",
"target",
",",
"arguments",
"[",
"i",
"]",
")",
";",
"}"... | Merge an arbitrary number of objects into one. | [
"Merge",
"an",
"arbitrary",
"number",
"of",
"objects",
"into",
"one",
"."
] | 6abda7ab68cc20f4aca870eb243747951b90ab04 | https://github.com/sparksuite/simplemde-markdown-editor/blob/6abda7ab68cc20f4aca870eb243747951b90ab04/src/js/simplemde.js#L1045-L1051 |
3,486 | sparksuite/simplemde-markdown-editor | src/js/simplemde.js | isLocalStorageAvailable | function isLocalStorageAvailable() {
if(typeof localStorage === "object") {
try {
localStorage.setItem("smde_localStorage", 1);
localStorage.removeItem("smde_localStorage");
} catch(e) {
return false;
}
} else {
return false;
}
return true;
} | javascript | function isLocalStorageAvailable() {
if(typeof localStorage === "object") {
try {
localStorage.setItem("smde_localStorage", 1);
localStorage.removeItem("smde_localStorage");
} catch(e) {
return false;
}
} else {
return false;
}
return true;
} | [
"function",
"isLocalStorageAvailable",
"(",
")",
"{",
"if",
"(",
"typeof",
"localStorage",
"===",
"\"object\"",
")",
"{",
"try",
"{",
"localStorage",
".",
"setItem",
"(",
"\"smde_localStorage\"",
",",
"1",
")",
";",
"localStorage",
".",
"removeItem",
"(",
"\"s... | Safari, in Private Browsing Mode, looks like it supports localStorage but all calls to setItem throw QuotaExceededError. We're going to detect this and set a variable accordingly. | [
"Safari",
"in",
"Private",
"Browsing",
"Mode",
"looks",
"like",
"it",
"supports",
"localStorage",
"but",
"all",
"calls",
"to",
"setItem",
"throw",
"QuotaExceededError",
".",
"We",
"re",
"going",
"to",
"detect",
"this",
"and",
"set",
"a",
"variable",
"according... | 6abda7ab68cc20f4aca870eb243747951b90ab04 | https://github.com/sparksuite/simplemde-markdown-editor/blob/6abda7ab68cc20f4aca870eb243747951b90ab04/src/js/simplemde.js#L1530-L1543 |
3,487 | feathericons/feather | bin/build-sprite-string.js | buildSpriteString | function buildSpriteString(icons) {
const symbols = Object.keys(icons)
.map(icon => toSvgSymbol(icon, icons[icon]))
.join('');
return `<svg xmlns="${DEFAULT_ATTRS.xmlns}"><defs>${symbols}</defs></svg>`;
} | javascript | function buildSpriteString(icons) {
const symbols = Object.keys(icons)
.map(icon => toSvgSymbol(icon, icons[icon]))
.join('');
return `<svg xmlns="${DEFAULT_ATTRS.xmlns}"><defs>${symbols}</defs></svg>`;
} | [
"function",
"buildSpriteString",
"(",
"icons",
")",
"{",
"const",
"symbols",
"=",
"Object",
".",
"keys",
"(",
"icons",
")",
".",
"map",
"(",
"icon",
"=>",
"toSvgSymbol",
"(",
"icon",
",",
"icons",
"[",
"icon",
"]",
")",
")",
".",
"join",
"(",
"''",
... | Build an SVG sprite string containing SVG symbols.
@param {Object} icons
@returns {string} | [
"Build",
"an",
"SVG",
"sprite",
"string",
"containing",
"SVG",
"symbols",
"."
] | 8f658193d25e943b196a2367319b5d9e85ee9f9f | https://github.com/feathericons/feather/blob/8f658193d25e943b196a2367319b5d9e85ee9f9f/bin/build-sprite-string.js#L8-L14 |
3,488 | feathericons/feather | src/to-svg.js | toSvg | function toSvg(name, attrs = {}) {
console.warn(
'feather.toSvg() is deprecated. Please use feather.icons[name].toSvg() instead.',
);
if (!name) {
throw new Error('The required `key` (icon name) parameter is missing.');
}
if (!icons[name]) {
throw new Error(
`No icon matching '${
n... | javascript | function toSvg(name, attrs = {}) {
console.warn(
'feather.toSvg() is deprecated. Please use feather.icons[name].toSvg() instead.',
);
if (!name) {
throw new Error('The required `key` (icon name) parameter is missing.');
}
if (!icons[name]) {
throw new Error(
`No icon matching '${
n... | [
"function",
"toSvg",
"(",
"name",
",",
"attrs",
"=",
"{",
"}",
")",
"{",
"console",
".",
"warn",
"(",
"'feather.toSvg() is deprecated. Please use feather.icons[name].toSvg() instead.'",
",",
")",
";",
"if",
"(",
"!",
"name",
")",
"{",
"throw",
"new",
"Error",
... | Create an SVG string.
@deprecated
@param {string} name
@param {Object} attrs
@returns {string} | [
"Create",
"an",
"SVG",
"string",
"."
] | 8f658193d25e943b196a2367319b5d9e85ee9f9f | https://github.com/feathericons/feather/blob/8f658193d25e943b196a2367319b5d9e85ee9f9f/src/to-svg.js#L10-L28 |
3,489 | feathericons/feather | src/icon.js | attrsToString | function attrsToString(attrs) {
return Object.keys(attrs)
.map(key => `${key}="${attrs[key]}"`)
.join(' ');
} | javascript | function attrsToString(attrs) {
return Object.keys(attrs)
.map(key => `${key}="${attrs[key]}"`)
.join(' ');
} | [
"function",
"attrsToString",
"(",
"attrs",
")",
"{",
"return",
"Object",
".",
"keys",
"(",
"attrs",
")",
".",
"map",
"(",
"key",
"=>",
"`",
"${",
"key",
"}",
"${",
"attrs",
"[",
"key",
"]",
"}",
"`",
")",
".",
"join",
"(",
"' '",
")",
";",
"}"
... | Convert attributes object to string of HTML attributes.
@param {Object} attrs
@returns {string} | [
"Convert",
"attributes",
"object",
"to",
"string",
"of",
"HTML",
"attributes",
"."
] | 8f658193d25e943b196a2367319b5d9e85ee9f9f | https://github.com/feathericons/feather/blob/8f658193d25e943b196a2367319b5d9e85ee9f9f/src/icon.js#L49-L53 |
3,490 | feathericons/feather | src/replace.js | replace | function replace(attrs = {}) {
if (typeof document === 'undefined') {
throw new Error('`feather.replace()` only works in a browser environment.');
}
const elementsToReplace = document.querySelectorAll('[data-feather]');
Array.from(elementsToReplace).forEach(element =>
replaceElement(element, attrs),
... | javascript | function replace(attrs = {}) {
if (typeof document === 'undefined') {
throw new Error('`feather.replace()` only works in a browser environment.');
}
const elementsToReplace = document.querySelectorAll('[data-feather]');
Array.from(elementsToReplace).forEach(element =>
replaceElement(element, attrs),
... | [
"function",
"replace",
"(",
"attrs",
"=",
"{",
"}",
")",
"{",
"if",
"(",
"typeof",
"document",
"===",
"'undefined'",
")",
"{",
"throw",
"new",
"Error",
"(",
"'`feather.replace()` only works in a browser environment.'",
")",
";",
"}",
"const",
"elementsToReplace",
... | Replace all HTML elements that have a `data-feather` attribute with SVG markup
corresponding to the element's `data-feather` attribute value.
@param {Object} attrs | [
"Replace",
"all",
"HTML",
"elements",
"that",
"have",
"a",
"data",
"-",
"feather",
"attribute",
"with",
"SVG",
"markup",
"corresponding",
"to",
"the",
"element",
"s",
"data",
"-",
"feather",
"attribute",
"value",
"."
] | 8f658193d25e943b196a2367319b5d9e85ee9f9f | https://github.com/feathericons/feather/blob/8f658193d25e943b196a2367319b5d9e85ee9f9f/src/replace.js#L11-L21 |
3,491 | feathericons/feather | src/replace.js | replaceElement | function replaceElement(element, attrs = {}) {
const elementAttrs = getAttrs(element);
const name = elementAttrs['data-feather'];
delete elementAttrs['data-feather'];
const svgString = icons[name].toSvg({
...attrs,
...elementAttrs,
...{ class: classnames(attrs.class, elementAttrs.class) },
});
... | javascript | function replaceElement(element, attrs = {}) {
const elementAttrs = getAttrs(element);
const name = elementAttrs['data-feather'];
delete elementAttrs['data-feather'];
const svgString = icons[name].toSvg({
...attrs,
...elementAttrs,
...{ class: classnames(attrs.class, elementAttrs.class) },
});
... | [
"function",
"replaceElement",
"(",
"element",
",",
"attrs",
"=",
"{",
"}",
")",
"{",
"const",
"elementAttrs",
"=",
"getAttrs",
"(",
"element",
")",
";",
"const",
"name",
"=",
"elementAttrs",
"[",
"'data-feather'",
"]",
";",
"delete",
"elementAttrs",
"[",
"... | Replace a single HTML element with SVG markup
corresponding to the element's `data-feather` attribute value.
@param {HTMLElement} element
@param {Object} attrs | [
"Replace",
"a",
"single",
"HTML",
"element",
"with",
"SVG",
"markup",
"corresponding",
"to",
"the",
"element",
"s",
"data",
"-",
"feather",
"attribute",
"value",
"."
] | 8f658193d25e943b196a2367319b5d9e85ee9f9f | https://github.com/feathericons/feather/blob/8f658193d25e943b196a2367319b5d9e85ee9f9f/src/replace.js#L29-L46 |
3,492 | feathericons/feather | src/replace.js | getAttrs | function getAttrs(element) {
return Array.from(element.attributes).reduce((attrs, attr) => {
attrs[attr.name] = attr.value;
return attrs;
}, {});
} | javascript | function getAttrs(element) {
return Array.from(element.attributes).reduce((attrs, attr) => {
attrs[attr.name] = attr.value;
return attrs;
}, {});
} | [
"function",
"getAttrs",
"(",
"element",
")",
"{",
"return",
"Array",
".",
"from",
"(",
"element",
".",
"attributes",
")",
".",
"reduce",
"(",
"(",
"attrs",
",",
"attr",
")",
"=>",
"{",
"attrs",
"[",
"attr",
".",
"name",
"]",
"=",
"attr",
".",
"valu... | Get the attributes of an HTML element.
@param {HTMLElement} element
@returns {Object} | [
"Get",
"the",
"attributes",
"of",
"an",
"HTML",
"element",
"."
] | 8f658193d25e943b196a2367319b5d9e85ee9f9f | https://github.com/feathericons/feather/blob/8f658193d25e943b196a2367319b5d9e85ee9f9f/src/replace.js#L53-L58 |
3,493 | feathericons/feather | bin/process-svg.js | processSvg | function processSvg(svg) {
return (
optimize(svg)
.then(setAttrs)
.then(format)
// remove semicolon inserted by prettier
// because prettier thinks it's formatting JSX not HTML
.then(svg => svg.replace(/;/g, ''))
);
} | javascript | function processSvg(svg) {
return (
optimize(svg)
.then(setAttrs)
.then(format)
// remove semicolon inserted by prettier
// because prettier thinks it's formatting JSX not HTML
.then(svg => svg.replace(/;/g, ''))
);
} | [
"function",
"processSvg",
"(",
"svg",
")",
"{",
"return",
"(",
"optimize",
"(",
"svg",
")",
".",
"then",
"(",
"setAttrs",
")",
".",
"then",
"(",
"format",
")",
"// remove semicolon inserted by prettier",
"// because prettier thinks it's formatting JSX not HTML",
".",
... | Process SVG string.
@param {string} svg - An SVG string.
@param {Promise<string>} | [
"Process",
"SVG",
"string",
"."
] | 8f658193d25e943b196a2367319b5d9e85ee9f9f | https://github.com/feathericons/feather/blob/8f658193d25e943b196a2367319b5d9e85ee9f9f/bin/process-svg.js#L12-L21 |
3,494 | feathericons/feather | bin/process-svg.js | optimize | function optimize(svg) {
const svgo = new Svgo({
plugins: [
{ convertShapeToPath: false },
{ mergePaths: false },
{ removeAttrs: { attrs: '(fill|stroke.*)' } },
{ removeTitle: true },
],
});
return new Promise(resolve => {
svgo.optimize(svg, ({ data }) => resolve(data));
});... | javascript | function optimize(svg) {
const svgo = new Svgo({
plugins: [
{ convertShapeToPath: false },
{ mergePaths: false },
{ removeAttrs: { attrs: '(fill|stroke.*)' } },
{ removeTitle: true },
],
});
return new Promise(resolve => {
svgo.optimize(svg, ({ data }) => resolve(data));
});... | [
"function",
"optimize",
"(",
"svg",
")",
"{",
"const",
"svgo",
"=",
"new",
"Svgo",
"(",
"{",
"plugins",
":",
"[",
"{",
"convertShapeToPath",
":",
"false",
"}",
",",
"{",
"mergePaths",
":",
"false",
"}",
",",
"{",
"removeAttrs",
":",
"{",
"attrs",
":"... | Optimize SVG with `svgo`.
@param {string} svg - An SVG string.
@returns {Promise<string>} | [
"Optimize",
"SVG",
"with",
"svgo",
"."
] | 8f658193d25e943b196a2367319b5d9e85ee9f9f | https://github.com/feathericons/feather/blob/8f658193d25e943b196a2367319b5d9e85ee9f9f/bin/process-svg.js#L28-L41 |
3,495 | feathericons/feather | bin/process-svg.js | setAttrs | function setAttrs(svg) {
const $ = cheerio.load(svg);
Object.keys(DEFAULT_ATTRS).forEach(key =>
$('svg').attr(key, DEFAULT_ATTRS[key]),
);
return $('body').html();
} | javascript | function setAttrs(svg) {
const $ = cheerio.load(svg);
Object.keys(DEFAULT_ATTRS).forEach(key =>
$('svg').attr(key, DEFAULT_ATTRS[key]),
);
return $('body').html();
} | [
"function",
"setAttrs",
"(",
"svg",
")",
"{",
"const",
"$",
"=",
"cheerio",
".",
"load",
"(",
"svg",
")",
";",
"Object",
".",
"keys",
"(",
"DEFAULT_ATTRS",
")",
".",
"forEach",
"(",
"key",
"=>",
"$",
"(",
"'svg'",
")",
".",
"attr",
"(",
"key",
",... | Set default attibutes on SVG.
@param {string} svg - An SVG string.
@returns {string} | [
"Set",
"default",
"attibutes",
"on",
"SVG",
"."
] | 8f658193d25e943b196a2367319b5d9e85ee9f9f | https://github.com/feathericons/feather/blob/8f658193d25e943b196a2367319b5d9e85ee9f9f/bin/process-svg.js#L48-L56 |
3,496 | facebook/watchman | node/bser/index.js | nextPow2 | function nextPow2(size) {
return Math.pow(2, Math.ceil(Math.log(size) / Math.LN2));
} | javascript | function nextPow2(size) {
return Math.pow(2, Math.ceil(Math.log(size) / Math.LN2));
} | [
"function",
"nextPow2",
"(",
"size",
")",
"{",
"return",
"Math",
".",
"pow",
"(",
"2",
",",
"Math",
".",
"ceil",
"(",
"Math",
".",
"log",
"(",
"size",
")",
"/",
"Math",
".",
"LN2",
")",
")",
";",
"}"
] | Find the next power-of-2 >= size | [
"Find",
"the",
"next",
"power",
"-",
"of",
"-",
"2",
">",
"=",
"size"
] | 8d576a2d3e1191c977f03f584993da63a3b8e5ec | https://github.com/facebook/watchman/blob/8d576a2d3e1191c977f03f584993da63a3b8e5ec/node/bser/index.js#L16-L18 |
3,497 | facebook/watchman | node/bser/index.js | loadFromBuffer | function loadFromBuffer(input) {
var buf = new BunserBuf();
var result = buf.append(input, true);
if (buf.buf.readAvail()) {
throw Error(
'excess data found after input buffer, use BunserBuf instead');
}
if (typeof result === 'undefined') {
throw Error(
'no bser found in string and no ... | javascript | function loadFromBuffer(input) {
var buf = new BunserBuf();
var result = buf.append(input, true);
if (buf.buf.readAvail()) {
throw Error(
'excess data found after input buffer, use BunserBuf instead');
}
if (typeof result === 'undefined') {
throw Error(
'no bser found in string and no ... | [
"function",
"loadFromBuffer",
"(",
"input",
")",
"{",
"var",
"buf",
"=",
"new",
"BunserBuf",
"(",
")",
";",
"var",
"result",
"=",
"buf",
".",
"append",
"(",
"input",
",",
"true",
")",
";",
"if",
"(",
"buf",
".",
"buf",
".",
"readAvail",
"(",
")",
... | synchronously BSER decode a string and return the value | [
"synchronously",
"BSER",
"decode",
"a",
"string",
"and",
"return",
"the",
"value"
] | 8d576a2d3e1191c977f03f584993da63a3b8e5ec | https://github.com/facebook/watchman/blob/8d576a2d3e1191c977f03f584993da63a3b8e5ec/node/bser/index.js#L435-L447 |
3,498 | facebook/watchman | node/bser/index.js | byteswap64 | function byteswap64(buf) {
var swap = new Buffer(buf.length);
for (var i = 0; i < buf.length; i++) {
swap[i] = buf[buf.length -1 - i];
}
return swap;
} | javascript | function byteswap64(buf) {
var swap = new Buffer(buf.length);
for (var i = 0; i < buf.length; i++) {
swap[i] = buf[buf.length -1 - i];
}
return swap;
} | [
"function",
"byteswap64",
"(",
"buf",
")",
"{",
"var",
"swap",
"=",
"new",
"Buffer",
"(",
"buf",
".",
"length",
")",
";",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"buf",
".",
"length",
";",
"i",
"++",
")",
"{",
"swap",
"[",
"i",
"]",
... | Byteswap an arbitrary buffer, flipping from one endian to the other, returning a new buffer with the resultant data | [
"Byteswap",
"an",
"arbitrary",
"buffer",
"flipping",
"from",
"one",
"endian",
"to",
"the",
"other",
"returning",
"a",
"new",
"buffer",
"with",
"the",
"resultant",
"data"
] | 8d576a2d3e1191c977f03f584993da63a3b8e5ec | https://github.com/facebook/watchman/blob/8d576a2d3e1191c977f03f584993da63a3b8e5ec/node/bser/index.js#L452-L458 |
3,499 | facebook/watchman | node/bser/index.js | dumpToBuffer | function dumpToBuffer(val) {
var buf = new Accumulator();
// Build out the header
buf.writeByte(0);
buf.writeByte(1);
// Reserve room for an int32 to hold our PDU length
buf.writeByte(BSER_INT32);
buf.writeInt(0, 4); // We'll come back and fill this in at the end
dump_any(buf, val);
// Compute PDU l... | javascript | function dumpToBuffer(val) {
var buf = new Accumulator();
// Build out the header
buf.writeByte(0);
buf.writeByte(1);
// Reserve room for an int32 to hold our PDU length
buf.writeByte(BSER_INT32);
buf.writeInt(0, 4); // We'll come back and fill this in at the end
dump_any(buf, val);
// Compute PDU l... | [
"function",
"dumpToBuffer",
"(",
"val",
")",
"{",
"var",
"buf",
"=",
"new",
"Accumulator",
"(",
")",
";",
"// Build out the header",
"buf",
".",
"writeByte",
"(",
"0",
")",
";",
"buf",
".",
"writeByte",
"(",
"1",
")",
";",
"// Reserve room for an int32 to ho... | BSER encode value and return a buffer of the contents | [
"BSER",
"encode",
"value",
"and",
"return",
"a",
"buffer",
"of",
"the",
"contents"
] | 8d576a2d3e1191c977f03f584993da63a3b8e5ec | https://github.com/facebook/watchman/blob/8d576a2d3e1191c977f03f584993da63a3b8e5ec/node/bser/index.js#L566-L585 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.