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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
36,000 | JS-DevTools/browserify-banner | lib/index.js | setFileOption | function setFileOption (file) {
if (!options.file) {
options.file = path.join(path.dirname(file), "banner.txt");
}
} | javascript | function setFileOption (file) {
if (!options.file) {
options.file = path.join(path.dirname(file), "banner.txt");
}
} | [
"function",
"setFileOption",
"(",
"file",
")",
"{",
"if",
"(",
"!",
"options",
".",
"file",
")",
"{",
"options",
".",
"file",
"=",
"path",
".",
"join",
"(",
"path",
".",
"dirname",
"(",
"file",
")",
",",
"\"banner.txt\"",
")",
";",
"}",
"}"
] | If the `file` option isn't set, then it defaults to "banner.txt" in the same directory
as the first entry file. We'll crawl up the directory tree from there if necessary.
@param {string} file - The full file path | [
"If",
"the",
"file",
"option",
"isn",
"t",
"set",
"then",
"it",
"defaults",
"to",
"banner",
".",
"txt",
"in",
"the",
"same",
"directory",
"as",
"the",
"first",
"entry",
"file",
".",
"We",
"ll",
"crawl",
"up",
"the",
"directory",
"tree",
"from",
"there"... | f30b0ecead5a6937e9aa7a2542f225b9f7c56902 | https://github.com/JS-DevTools/browserify-banner/blob/f30b0ecead5a6937e9aa7a2542f225b9f7c56902/lib/index.js#L51-L55 |
36,001 | JS-DevTools/browserify-banner | lib/index.js | wrapBundle | function wrapBundle () {
let wrap = browserify.pipeline.get("wrap");
let bannerAlreadyAdded = false;
let banner;
wrap.push(through(addBannerToBundle));
if (browserify._options.debug) {
wrap.push(through(addBannerToSourcemap));
}
/**
* Injects the banner comment block into the Br... | javascript | function wrapBundle () {
let wrap = browserify.pipeline.get("wrap");
let bannerAlreadyAdded = false;
let banner;
wrap.push(through(addBannerToBundle));
if (browserify._options.debug) {
wrap.push(through(addBannerToSourcemap));
}
/**
* Injects the banner comment block into the Br... | [
"function",
"wrapBundle",
"(",
")",
"{",
"let",
"wrap",
"=",
"browserify",
".",
"pipeline",
".",
"get",
"(",
"\"wrap\"",
")",
";",
"let",
"bannerAlreadyAdded",
"=",
"false",
";",
"let",
"banner",
";",
"wrap",
".",
"push",
"(",
"through",
"(",
"addBannerT... | Adds transforms to the Browserify "wrap" pipeline | [
"Adds",
"transforms",
"to",
"the",
"Browserify",
"wrap",
"pipeline"
] | f30b0ecead5a6937e9aa7a2542f225b9f7c56902 | https://github.com/JS-DevTools/browserify-banner/blob/f30b0ecead5a6937e9aa7a2542f225b9f7c56902/lib/index.js#L60-L112 |
36,002 | JS-DevTools/browserify-banner | lib/index.js | addBannerToBundle | function addBannerToBundle (chunk, enc, next) {
if (!bannerAlreadyAdded) {
bannerAlreadyAdded = true;
try {
banner = getBanner(options);
this.push(new Buffer(banner));
}
catch (e) {
next(e);
}
}
this.push(chunk);
next();
} | javascript | function addBannerToBundle (chunk, enc, next) {
if (!bannerAlreadyAdded) {
bannerAlreadyAdded = true;
try {
banner = getBanner(options);
this.push(new Buffer(banner));
}
catch (e) {
next(e);
}
}
this.push(chunk);
next();
} | [
"function",
"addBannerToBundle",
"(",
"chunk",
",",
"enc",
",",
"next",
")",
"{",
"if",
"(",
"!",
"bannerAlreadyAdded",
")",
"{",
"bannerAlreadyAdded",
"=",
"true",
";",
"try",
"{",
"banner",
"=",
"getBanner",
"(",
"options",
")",
";",
"this",
".",
"push... | Injects the banner comment block into the Browserify bundle | [
"Injects",
"the",
"banner",
"comment",
"block",
"into",
"the",
"Browserify",
"bundle"
] | f30b0ecead5a6937e9aa7a2542f225b9f7c56902 | https://github.com/JS-DevTools/browserify-banner/blob/f30b0ecead5a6937e9aa7a2542f225b9f7c56902/lib/index.js#L73-L86 |
36,003 | JS-DevTools/browserify-banner | lib/index.js | addBannerToSourcemap | function addBannerToSourcemap (chunk, enc, next) {
let pushed = false;
if (banner) {
// Get the sourcemap, once it exists
let conv = convertSourcemap.fromSource(chunk.toString("utf8"));
if (conv) {
// Offset the sourcemap by the number of lines in the banner
let ... | javascript | function addBannerToSourcemap (chunk, enc, next) {
let pushed = false;
if (banner) {
// Get the sourcemap, once it exists
let conv = convertSourcemap.fromSource(chunk.toString("utf8"));
if (conv) {
// Offset the sourcemap by the number of lines in the banner
let ... | [
"function",
"addBannerToSourcemap",
"(",
"chunk",
",",
"enc",
",",
"next",
")",
"{",
"let",
"pushed",
"=",
"false",
";",
"if",
"(",
"banner",
")",
"{",
"// Get the sourcemap, once it exists",
"let",
"conv",
"=",
"convertSourcemap",
".",
"fromSource",
"(",
"chu... | Adjusts the sourcemap to account for the banner comment block | [
"Adjusts",
"the",
"sourcemap",
"to",
"account",
"for",
"the",
"banner",
"comment",
"block"
] | f30b0ecead5a6937e9aa7a2542f225b9f7c56902 | https://github.com/JS-DevTools/browserify-banner/blob/f30b0ecead5a6937e9aa7a2542f225b9f7c56902/lib/index.js#L91-L111 |
36,004 | JS-DevTools/browserify-banner | lib/index.js | getBanner | function getBanner (options) {
if (!options.banner) {
if (typeof options.pkg === "string") {
// Read the package.json file
options.pkg = readJSON(options.pkg);
}
if (!options.template) {
// Read the banner template from a file
options.template = findFile(options.file);
}
... | javascript | function getBanner (options) {
if (!options.banner) {
if (typeof options.pkg === "string") {
// Read the package.json file
options.pkg = readJSON(options.pkg);
}
if (!options.template) {
// Read the banner template from a file
options.template = findFile(options.file);
}
... | [
"function",
"getBanner",
"(",
"options",
")",
"{",
"if",
"(",
"!",
"options",
".",
"banner",
")",
"{",
"if",
"(",
"typeof",
"options",
".",
"pkg",
"===",
"\"string\"",
")",
"{",
"// Read the package.json file",
"options",
".",
"pkg",
"=",
"readJSON",
"(",
... | Returns the banner comment block, based on the given options
@param {object} options
@param {string} [options.banner] - If set, then this banner will be used exactly as-is
@param {string} [options.template] - A Lodash template that will be compiled to build the banner
@param {string} [options.file] - A file containing... | [
"Returns",
"the",
"banner",
"comment",
"block",
"based",
"on",
"the",
"given",
"options"
] | f30b0ecead5a6937e9aa7a2542f225b9f7c56902 | https://github.com/JS-DevTools/browserify-banner/blob/f30b0ecead5a6937e9aa7a2542f225b9f7c56902/lib/index.js#L126-L150 |
36,005 | JS-DevTools/browserify-banner | lib/index.js | readJSON | function readJSON (filePath) {
let json = fs.readFileSync(filePath, "utf8");
try {
return JSON.parse(json);
}
catch (e) {
throw ono(e, `Error parsing ${filePath}`);
}
} | javascript | function readJSON (filePath) {
let json = fs.readFileSync(filePath, "utf8");
try {
return JSON.parse(json);
}
catch (e) {
throw ono(e, `Error parsing ${filePath}`);
}
} | [
"function",
"readJSON",
"(",
"filePath",
")",
"{",
"let",
"json",
"=",
"fs",
".",
"readFileSync",
"(",
"filePath",
",",
"\"utf8\"",
")",
";",
"try",
"{",
"return",
"JSON",
".",
"parse",
"(",
"json",
")",
";",
"}",
"catch",
"(",
"e",
")",
"{",
"thro... | Reads and parses a JSON file
@param {string} filePath
@returns {object} | [
"Reads",
"and",
"parses",
"a",
"JSON",
"file"
] | f30b0ecead5a6937e9aa7a2542f225b9f7c56902 | https://github.com/JS-DevTools/browserify-banner/blob/f30b0ecead5a6937e9aa7a2542f225b9f7c56902/lib/index.js#L158-L167 |
36,006 | JS-DevTools/browserify-banner | lib/index.js | findFile | function findFile (startingPath) {
try {
return fs.readFileSync(startingPath, "utf8");
}
catch (e) {
let fileName = path.basename(startingPath);
let startingDir = path.dirname(startingPath);
let parentDir = path.dirname(startingDir);
if (parentDir === startingDir) {
// We're recursed al... | javascript | function findFile (startingPath) {
try {
return fs.readFileSync(startingPath, "utf8");
}
catch (e) {
let fileName = path.basename(startingPath);
let startingDir = path.dirname(startingPath);
let parentDir = path.dirname(startingDir);
if (parentDir === startingDir) {
// We're recursed al... | [
"function",
"findFile",
"(",
"startingPath",
")",
"{",
"try",
"{",
"return",
"fs",
".",
"readFileSync",
"(",
"startingPath",
",",
"\"utf8\"",
")",
";",
"}",
"catch",
"(",
"e",
")",
"{",
"let",
"fileName",
"=",
"path",
".",
"basename",
"(",
"startingPath"... | Searches for the given file, starting in the given directory
and crawling up from there, and reads its contents.
@param {string} startingPath - The file path to start at
@returns {string|undefined} | [
"Searches",
"for",
"the",
"given",
"file",
"starting",
"in",
"the",
"given",
"directory",
"and",
"crawling",
"up",
"from",
"there",
"and",
"reads",
"its",
"contents",
"."
] | f30b0ecead5a6937e9aa7a2542f225b9f7c56902 | https://github.com/JS-DevTools/browserify-banner/blob/f30b0ecead5a6937e9aa7a2542f225b9f7c56902/lib/index.js#L176-L202 |
36,007 | JS-DevTools/browserify-banner | lib/index.js | countLines | function countLines (str) {
if (str) {
let lines = str.match(/\n/g);
if (lines) {
return lines.length;
}
}
return 0;
} | javascript | function countLines (str) {
if (str) {
let lines = str.match(/\n/g);
if (lines) {
return lines.length;
}
}
return 0;
} | [
"function",
"countLines",
"(",
"str",
")",
"{",
"if",
"(",
"str",
")",
"{",
"let",
"lines",
"=",
"str",
".",
"match",
"(",
"/",
"\\n",
"/",
"g",
")",
";",
"if",
"(",
"lines",
")",
"{",
"return",
"lines",
".",
"length",
";",
"}",
"}",
"return",
... | Counts the number of lines in the given string
@param {string} str
@returns {number} | [
"Counts",
"the",
"number",
"of",
"lines",
"in",
"the",
"given",
"string"
] | f30b0ecead5a6937e9aa7a2542f225b9f7c56902 | https://github.com/JS-DevTools/browserify-banner/blob/f30b0ecead5a6937e9aa7a2542f225b9f7c56902/lib/index.js#L210-L218 |
36,008 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/color-debug.js | function () {
var hsl = this.getHSL();
return 'hsl(' + Math.round(hsl.h || 0) + ', ' + percentage(hsl.s) + ', ' + percentage(hsl.l) + ')';
} | javascript | function () {
var hsl = this.getHSL();
return 'hsl(' + Math.round(hsl.h || 0) + ', ' + percentage(hsl.s) + ', ' + percentage(hsl.l) + ')';
} | [
"function",
"(",
")",
"{",
"var",
"hsl",
"=",
"this",
".",
"getHSL",
"(",
")",
";",
"return",
"'hsl('",
"+",
"Math",
".",
"round",
"(",
"hsl",
".",
"h",
"||",
"0",
")",
"+",
"', '",
"+",
"percentage",
"(",
"hsl",
".",
"s",
")",
"+",
"', '",
"... | To hsl string format
@return {String} | [
"To",
"hsl",
"string",
"format"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/color-debug.js#L34-L37 | |
36,009 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/color-debug.js | function () {
var self = this;
return '#' + padding2(Number(self.get('r')).toString(16)) + padding2(Number(self.get('g')).toString(16)) + padding2(Number(self.get('b')).toString(16));
} | javascript | function () {
var self = this;
return '#' + padding2(Number(self.get('r')).toString(16)) + padding2(Number(self.get('g')).toString(16)) + padding2(Number(self.get('b')).toString(16));
} | [
"function",
"(",
")",
"{",
"var",
"self",
"=",
"this",
";",
"return",
"'#'",
"+",
"padding2",
"(",
"Number",
"(",
"self",
".",
"get",
"(",
"'r'",
")",
")",
".",
"toString",
"(",
"16",
")",
")",
"+",
"padding2",
"(",
"Number",
"(",
"self",
".",
... | To hex string format
@return {String} | [
"To",
"hex",
"string",
"format"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/color-debug.js#L66-L69 | |
36,010 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/color-debug.js | function (cfg) {
var self = this, current;
if (!('h' in cfg && 's' in cfg && 'v' in cfg)) {
current = self.getHSV();
util.each([
'h',
's',
'v'
], function (... | javascript | function (cfg) {
var self = this, current;
if (!('h' in cfg && 's' in cfg && 'v' in cfg)) {
current = self.getHSV();
util.each([
'h',
's',
'v'
], function (... | [
"function",
"(",
"cfg",
")",
"{",
"var",
"self",
"=",
"this",
",",
"current",
";",
"if",
"(",
"!",
"(",
"'h'",
"in",
"cfg",
"&&",
"'s'",
"in",
"cfg",
"&&",
"'v'",
"in",
"cfg",
")",
")",
"{",
"current",
"=",
"self",
".",
"getHSV",
"(",
")",
";... | Set value by hsv
@param cfg
@param cfg.h
@param cfg.s
@param cfg.v | [
"Set",
"value",
"by",
"hsv"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/color-debug.js#L119-L135 | |
36,011 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/color-debug.js | function (cfg) {
var self = this, current;
if (!('h' in cfg && 's' in cfg && 'l' in cfg)) {
current = self.getHSL();
util.each([
'h',
's',
'l'
], function (... | javascript | function (cfg) {
var self = this, current;
if (!('h' in cfg && 's' in cfg && 'l' in cfg)) {
current = self.getHSL();
util.each([
'h',
's',
'l'
], function (... | [
"function",
"(",
"cfg",
")",
"{",
"var",
"self",
"=",
"this",
",",
"current",
";",
"if",
"(",
"!",
"(",
"'h'",
"in",
"cfg",
"&&",
"'s'",
"in",
"cfg",
"&&",
"'l'",
"in",
"cfg",
")",
")",
"{",
"current",
"=",
"self",
".",
"getHSL",
"(",
")",
";... | Set value by hsl
@param cfg
@param cfg.h
@param cfg.s
@param cfg.l | [
"Set",
"value",
"by",
"hsl"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/color-debug.js#L143-L159 | |
36,012 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/color-debug.js | function (str) {
var values, r, g, b, a = 1;
if ((str.length === 4 || str.length === 7) && str.substr(0, 1) === '#') {
values = str.match(hexRe);
if (values) {
r = parseHex(values[1]);
g = parseHex(values[2]);
... | javascript | function (str) {
var values, r, g, b, a = 1;
if ((str.length === 4 || str.length === 7) && str.substr(0, 1) === '#') {
values = str.match(hexRe);
if (values) {
r = parseHex(values[1]);
g = parseHex(values[2]);
... | [
"function",
"(",
"str",
")",
"{",
"var",
"values",
",",
"r",
",",
"g",
",",
"b",
",",
"a",
"=",
"1",
";",
"if",
"(",
"(",
"str",
".",
"length",
"===",
"4",
"||",
"str",
".",
"length",
"===",
"7",
")",
"&&",
"str",
".",
"substr",
"(",
"0",
... | Construct color object from String.
@static
@param {String} str string format color( '#rrggbb' '#rgb' or 'rgb(r,g,b)' 'rgba(r,g,b,a)' ) | [
"Construct",
"color",
"object",
"from",
"String",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/color-debug.js#L248-L277 | |
36,013 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/color-debug.js | function (cfg) {
var rgb = hsl2rgb(cfg);
rgb.a = cfg.a;
return new Color(rgb);
} | javascript | function (cfg) {
var rgb = hsl2rgb(cfg);
rgb.a = cfg.a;
return new Color(rgb);
} | [
"function",
"(",
"cfg",
")",
"{",
"var",
"rgb",
"=",
"hsl2rgb",
"(",
"cfg",
")",
";",
"rgb",
".",
"a",
"=",
"cfg",
".",
"a",
";",
"return",
"new",
"Color",
"(",
"rgb",
")",
";",
"}"
] | Construct color object from hsl.
@static
@param {Object} cfg
@param {Number} cfg.h Hue
@param {Number} cfg.s Saturation
@param {Number} cfg.l lightness
@param {Number} cfg.a alpha | [
"Construct",
"color",
"object",
"from",
"hsl",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/color-debug.js#L287-L291 | |
36,014 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/color-debug.js | function (cfg) {
var rgb = hsv2rgb(cfg);
rgb.a = cfg.a;
return new Color(rgb);
} | javascript | function (cfg) {
var rgb = hsv2rgb(cfg);
rgb.a = cfg.a;
return new Color(rgb);
} | [
"function",
"(",
"cfg",
")",
"{",
"var",
"rgb",
"=",
"hsv2rgb",
"(",
"cfg",
")",
";",
"rgb",
".",
"a",
"=",
"cfg",
".",
"a",
";",
"return",
"new",
"Color",
"(",
"rgb",
")",
";",
"}"
] | Construct color object from hsv.
@static
@param {Object} cfg
@param {Number} cfg.h Hue
@param {Number} cfg.s Saturation
@param {Number} cfg.v value
@param {Number} cfg.a alpha | [
"Construct",
"color",
"object",
"from",
"hsv",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/color-debug.js#L301-L305 | |
36,015 | craterdog-bali/js-bali-component-framework | src/elements/Binary.js | Binary | function Binary(value, parameters) {
abstractions.Element.call(this, utilities.types.BINARY, parameters);
// analyze the value
value = value || Buffer.alloc(0); // the default value is an empty buffer
// since this element is immutable the value must be read-only
this.getValue = function() { retu... | javascript | function Binary(value, parameters) {
abstractions.Element.call(this, utilities.types.BINARY, parameters);
// analyze the value
value = value || Buffer.alloc(0); // the default value is an empty buffer
// since this element is immutable the value must be read-only
this.getValue = function() { retu... | [
"function",
"Binary",
"(",
"value",
",",
"parameters",
")",
"{",
"abstractions",
".",
"Element",
".",
"call",
"(",
"this",
",",
"utilities",
".",
"types",
".",
"BINARY",
",",
"parameters",
")",
";",
"// analyze the value",
"value",
"=",
"value",
"||",
"Buf... | PUBLIC CONSTRUCTOR
This constructor creates an immutable instance of a binary string using the specified
value.
@constructor
@param {Buffer} value a buffer containing the bytes for the binary string.
@param {Parameters} parameters Optional parameters used to parameterize this element.
@returns {Binary} The new binary... | [
"PUBLIC",
"CONSTRUCTOR",
"This",
"constructor",
"creates",
"an",
"immutable",
"instance",
"of",
"a",
"binary",
"string",
"using",
"the",
"specified",
"value",
"."
] | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/elements/Binary.js#L32-L42 |
36,016 | nyteshade/ne-tag-fns | dist/functions.js | cautiouslyApplyEach | function cautiouslyApplyEach(
array,
fns,
log = true,
keepOldValueOnFalseyReturn = false)
{
let items = Array.from(array);
if (items && Array.isArray(items) && fns && Array.isArray(fns)) {
items.forEach((item, itemIndex, itemArray) => {
let newItem = item;
fns.forEach(fn => {
try {
... | javascript | function cautiouslyApplyEach(
array,
fns,
log = true,
keepOldValueOnFalseyReturn = false)
{
let items = Array.from(array);
if (items && Array.isArray(items) && fns && Array.isArray(fns)) {
items.forEach((item, itemIndex, itemArray) => {
let newItem = item;
fns.forEach(fn => {
try {
... | [
"function",
"cautiouslyApplyEach",
"(",
"array",
",",
"fns",
",",
"log",
"=",
"true",
",",
"keepOldValueOnFalseyReturn",
"=",
"false",
")",
"{",
"let",
"items",
"=",
"Array",
".",
"from",
"(",
"array",
")",
";",
"if",
"(",
"items",
"&&",
"Array",
".",
... | Nearly identical to `cautiouslyApply`, this function works on an array of
items rather than a single item. The only other difference is that the
supplied functors receive the index of the item and the array the item is
contained within as second and third parameters, respectively.
@param {Array<mixed>} array an array ... | [
"Nearly",
"identical",
"to",
"cautiouslyApply",
"this",
"function",
"works",
"on",
"an",
"array",
"of",
"items",
"rather",
"than",
"a",
"single",
"item",
".",
"The",
"only",
"other",
"difference",
"is",
"that",
"the",
"supplied",
"functors",
"receive",
"the",
... | f851cb7b72fbbfbfe4e38edeb91d90c04035ee74 | https://github.com/nyteshade/ne-tag-fns/blob/f851cb7b72fbbfbfe4e38edeb91d90c04035ee74/dist/functions.js#L69-L105 |
36,017 | nyteshade/ne-tag-fns | dist/functions.js | cautiouslyApply | function cautiouslyApply(
item,
fns,
log = true,
keepOldValueOnFalseyReturn = false)
{
if (fns && Array.isArray(fns)) {
fns.forEach(fn => {
try {
let bindFunctor = Array.isArray(fn) && fn[1];
let functor = bindFunctor ?
fn[0].bind(item) :
Array.isArray(fn) ? fn[0] : fn;
... | javascript | function cautiouslyApply(
item,
fns,
log = true,
keepOldValueOnFalseyReturn = false)
{
if (fns && Array.isArray(fns)) {
fns.forEach(fn => {
try {
let bindFunctor = Array.isArray(fn) && fn[1];
let functor = bindFunctor ?
fn[0].bind(item) :
Array.isArray(fn) ? fn[0] : fn;
... | [
"function",
"cautiouslyApply",
"(",
"item",
",",
"fns",
",",
"log",
"=",
"true",
",",
"keepOldValueOnFalseyReturn",
"=",
"false",
")",
"{",
"if",
"(",
"fns",
"&&",
"Array",
".",
"isArray",
"(",
"fns",
")",
")",
"{",
"fns",
".",
"forEach",
"(",
"fn",
... | Given an item that needs to be modified or replaced, the function takes
an array of functions to run in order, each receiving the last state of the
item. If an exception occurs during function execution the value passed is
the value that is kept.
Optionally, when the function executes and returns the newly modified st... | [
"Given",
"an",
"item",
"that",
"needs",
"to",
"be",
"modified",
"or",
"replaced",
"the",
"function",
"takes",
"an",
"array",
"of",
"functions",
"to",
"run",
"in",
"order",
"each",
"receiving",
"the",
"last",
"state",
"of",
"the",
"item",
".",
"If",
"an",... | f851cb7b72fbbfbfe4e38edeb91d90c04035ee74 | https://github.com/nyteshade/ne-tag-fns/blob/f851cb7b72fbbfbfe4e38edeb91d90c04035ee74/dist/functions.js#L136-L164 |
36,018 | nyteshade/ne-tag-fns | dist/functions.js | measureIndents | function measureIndents(
string,
config = {
preWork: [],
perLine: [],
postWork: [] },
whitespace = /[ \t]/)
{
let regexp = new RegExp(`(^${whitespace.source}*)`);
let strings;
let indents;
if (Array.isArray(string)) {
string = string.join('\n');
}
string = cautiouslyApply(string, config.preWork... | javascript | function measureIndents(
string,
config = {
preWork: [],
perLine: [],
postWork: [] },
whitespace = /[ \t]/)
{
let regexp = new RegExp(`(^${whitespace.source}*)`);
let strings;
let indents;
if (Array.isArray(string)) {
string = string.join('\n');
}
string = cautiouslyApply(string, config.preWork... | [
"function",
"measureIndents",
"(",
"string",
",",
"config",
"=",
"{",
"preWork",
":",
"[",
"]",
",",
"perLine",
":",
"[",
"]",
",",
"postWork",
":",
"[",
"]",
"}",
",",
"whitespace",
"=",
"/",
"[ \\t]",
"/",
")",
"{",
"let",
"regexp",
"=",
"new",
... | Measure indents is something that may be of use for any tag function. Its
purpose is to take a string, split it into separate lines and count the
leading whitespace of each line. Once finished, it returns an array of
two items; the list of strings and the matching list of indents which are
related to each other via ind... | [
"Measure",
"indents",
"is",
"something",
"that",
"may",
"be",
"of",
"use",
"for",
"any",
"tag",
"function",
".",
"Its",
"purpose",
"is",
"to",
"take",
"a",
"string",
"split",
"it",
"into",
"separate",
"lines",
"and",
"count",
"the",
"leading",
"whitespace"... | f851cb7b72fbbfbfe4e38edeb91d90c04035ee74 | https://github.com/nyteshade/ne-tag-fns/blob/f851cb7b72fbbfbfe4e38edeb91d90c04035ee74/dist/functions.js#L223-L252 |
36,019 | nyteshade/ne-tag-fns | dist/functions.js | stripEmptyFirstAndLast | function stripEmptyFirstAndLast(string) {
let strings = string.split(/\r?\n/);
// construct a small resuable function for trimming all initial whitespace
let trimL = s => s.replace(/^([ \t]*)/, '');
let trimR = s => s.replace(/([ \t]*)($)/, '$1');
// the first line is usually a misnomer, discount it if it is... | javascript | function stripEmptyFirstAndLast(string) {
let strings = string.split(/\r?\n/);
// construct a small resuable function for trimming all initial whitespace
let trimL = s => s.replace(/^([ \t]*)/, '');
let trimR = s => s.replace(/([ \t]*)($)/, '$1');
// the first line is usually a misnomer, discount it if it is... | [
"function",
"stripEmptyFirstAndLast",
"(",
"string",
")",
"{",
"let",
"strings",
"=",
"string",
".",
"split",
"(",
"/",
"\\r?\\n",
"/",
")",
";",
"// construct a small resuable function for trimming all initial whitespace",
"let",
"trimL",
"=",
"s",
"=>",
"s",
".",
... | A `preWork` functor for use with `measureIndents` that strips the first and
last lines from a given string if that string has nothing but whitespace. A
commonly desired functionality when working with multiline template strings
@param {string} string the string to parse
@return {string} a modified string missing bits... | [
"A",
"preWork",
"functor",
"for",
"use",
"with",
"measureIndents",
"that",
"strips",
"the",
"first",
"and",
"last",
"lines",
"from",
"a",
"given",
"string",
"if",
"that",
"string",
"has",
"nothing",
"but",
"whitespace",
".",
"A",
"commonly",
"desired",
"func... | f851cb7b72fbbfbfe4e38edeb91d90c04035ee74 | https://github.com/nyteshade/ne-tag-fns/blob/f851cb7b72fbbfbfe4e38edeb91d90c04035ee74/dist/functions.js#L431-L453 |
36,020 | nyteshade/ne-tag-fns | dist/functions.js | dropLowestIndents | function dropLowestIndents(
values)
{
let [strings, indents] = values;
let set = new Set(indents);
let lowest = Math.min(...indents);
set.delete(lowest);
return [strings, Array.from(set)];
} | javascript | function dropLowestIndents(
values)
{
let [strings, indents] = values;
let set = new Set(indents);
let lowest = Math.min(...indents);
set.delete(lowest);
return [strings, Array.from(set)];
} | [
"function",
"dropLowestIndents",
"(",
"values",
")",
"{",
"let",
"[",
"strings",
",",
"indents",
"]",
"=",
"values",
";",
"let",
"set",
"=",
"new",
"Set",
"(",
"indents",
")",
";",
"let",
"lowest",
"=",
"Math",
".",
"min",
"(",
"...",
"indents",
")",... | A `postWork` functor for use with `measureIndents` that will modify the
indents array to be an array missing its lowest number.
@param {[Array<string>, Array<number>]} values the tuple containing the
modified strings and indent values
@return {[Array<string>, Array<number>]} returns a tuple containing an
unmodified se... | [
"A",
"postWork",
"functor",
"for",
"use",
"with",
"measureIndents",
"that",
"will",
"modify",
"the",
"indents",
"array",
"to",
"be",
"an",
"array",
"missing",
"its",
"lowest",
"number",
"."
] | f851cb7b72fbbfbfe4e38edeb91d90c04035ee74 | https://github.com/nyteshade/ne-tag-fns/blob/f851cb7b72fbbfbfe4e38edeb91d90c04035ee74/dist/functions.js#L465-L475 |
36,021 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js | GregorianCalendar | function GregorianCalendar(timezoneOffset, locale) {
var args = util.makeArray(arguments);
if (typeof timezoneOffset === 'object') {
locale = timezoneOffset;
timezoneOffset = locale.timezoneOffset;
} else if (args.length >= 3) {
timezoneOffset = locale = null;... | javascript | function GregorianCalendar(timezoneOffset, locale) {
var args = util.makeArray(arguments);
if (typeof timezoneOffset === 'object') {
locale = timezoneOffset;
timezoneOffset = locale.timezoneOffset;
} else if (args.length >= 3) {
timezoneOffset = locale = null;... | [
"function",
"GregorianCalendar",
"(",
"timezoneOffset",
",",
"locale",
")",
"{",
"var",
"args",
"=",
"util",
".",
"makeArray",
"(",
"arguments",
")",
";",
"if",
"(",
"typeof",
"timezoneOffset",
"===",
"'object'",
")",
"{",
"locale",
"=",
"timezoneOffset",
";... | GregorianCalendar class.
- no arguments:
Constructs a default GregorianCalendar using the current time
in the default time zone with the default locale.
- one argument timezoneOffset:
Constructs a GregorianCalendar based on the current time
in the given timezoneOffset with the default locale.
- one argument locale:
Co... | [
"GregorianCalendar",
"class",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js#L87-L144 |
36,022 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js | function (field) {
if (MIN_VALUES[field] !== undefined) {
return MIN_VALUES[field];
}
var fields = this.fields;
if (field === WEEK_OF_MONTH) {
var cal = new GregorianCalendar(fields[YEAR], fields[MONTH], 1);
return cal.get(W... | javascript | function (field) {
if (MIN_VALUES[field] !== undefined) {
return MIN_VALUES[field];
}
var fields = this.fields;
if (field === WEEK_OF_MONTH) {
var cal = new GregorianCalendar(fields[YEAR], fields[MONTH], 1);
return cal.get(W... | [
"function",
"(",
"field",
")",
"{",
"if",
"(",
"MIN_VALUES",
"[",
"field",
"]",
"!==",
"undefined",
")",
"{",
"return",
"MIN_VALUES",
"[",
"field",
"]",
";",
"}",
"var",
"fields",
"=",
"this",
".",
"fields",
";",
"if",
"(",
"field",
"===",
"WEEK_OF_M... | Returns the minimum value for
the given calendar field of this GregorianCalendar instance.
The minimum value is defined as the smallest value
returned by the get method for any possible time value,
taking into consideration the current values of the getFirstDayOfWeek,
getMinimalDaysInFirstWeek.
@param field the calenda... | [
"Returns",
"the",
"minimum",
"value",
"for",
"the",
"given",
"calendar",
"field",
"of",
"this",
"GregorianCalendar",
"instance",
".",
"The",
"minimum",
"value",
"is",
"defined",
"as",
"the",
"smallest",
"value",
"returned",
"by",
"the",
"get",
"method",
"for",... | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js#L378-L388 | |
36,023 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js | function (field) {
if (MAX_VALUES[field] !== undefined) {
return MAX_VALUES[field];
}
var value, fields = this.fields;
switch (field) {
case DAY_OF_MONTH:
value = getMonthLength(fields[YEAR], fields[MONTH]);
brea... | javascript | function (field) {
if (MAX_VALUES[field] !== undefined) {
return MAX_VALUES[field];
}
var value, fields = this.fields;
switch (field) {
case DAY_OF_MONTH:
value = getMonthLength(fields[YEAR], fields[MONTH]);
brea... | [
"function",
"(",
"field",
")",
"{",
"if",
"(",
"MAX_VALUES",
"[",
"field",
"]",
"!==",
"undefined",
")",
"{",
"return",
"MAX_VALUES",
"[",
"field",
"]",
";",
"}",
"var",
"value",
",",
"fields",
"=",
"this",
".",
"fields",
";",
"switch",
"(",
"field",... | Returns the maximum value for the given calendar field
of this GregorianCalendar instance.
The maximum value is defined as the largest value returned
by the get method for any possible time value, taking into consideration
the current values of the getFirstDayOfWeek, getMinimalDaysInFirstWeek methods.
@param field the ... | [
"Returns",
"the",
"maximum",
"value",
"for",
"the",
"given",
"calendar",
"field",
"of",
"this",
"GregorianCalendar",
"instance",
".",
"The",
"maximum",
"value",
"is",
"defined",
"as",
"the",
"largest",
"value",
"returned",
"by",
"the",
"get",
"method",
"for",
... | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js#L398-L429 | |
36,024 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js | function (field, v) {
var len = arguments.length;
if (len === 2) {
this.fields[field] = v;
} else if (len < MILLISECONDS + 1) {
for (var i = 0; i < len; i++) {
this.fields[YEAR + i] = arguments[i];
}
} el... | javascript | function (field, v) {
var len = arguments.length;
if (len === 2) {
this.fields[field] = v;
} else if (len < MILLISECONDS + 1) {
for (var i = 0; i < len; i++) {
this.fields[YEAR + i] = arguments[i];
}
} el... | [
"function",
"(",
"field",
",",
"v",
")",
"{",
"var",
"len",
"=",
"arguments",
".",
"length",
";",
"if",
"(",
"len",
"===",
"2",
")",
"{",
"this",
".",
"fields",
"[",
"field",
"]",
"=",
"v",
";",
"}",
"else",
"if",
"(",
"len",
"<",
"MILLISECONDS... | Returns the year of the given calendar field.
@method getYear
@returns {Number} the year for the given calendar field.
Returns the month of the given calendar field.
@method getMonth
@returns {Number} the month for the given calendar field.
Returns the day of month of the given calendar field.
@method getDayOfMonth... | [
"Returns",
"the",
"year",
"of",
"the",
"given",
"calendar",
"field",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js#L722-L734 | |
36,025 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js | function (value, amount, min, max) {
var diff = value - min;
var range = max - min + 1;
amount %= range;
return min + (diff + amount + range) % range;
} | javascript | function (value, amount, min, max) {
var diff = value - min;
var range = max - min + 1;
amount %= range;
return min + (diff + amount + range) % range;
} | [
"function",
"(",
"value",
",",
"amount",
",",
"min",
",",
"max",
")",
"{",
"var",
"diff",
"=",
"value",
"-",
"min",
";",
"var",
"range",
"=",
"max",
"-",
"min",
"+",
"1",
";",
"amount",
"%=",
"range",
";",
"return",
"min",
"+",
"(",
"diff",
"+"... | add the year of the given calendar field.
@method addYear
@param {Number} amount the signed amount to add to field.
add the month of the given calendar field.
@method addMonth
@param {Number} amount the signed amount to add to field.
add the day of month of the given calendar field.
@method addDayOfMonth
@param {Nu... | [
"add",
"the",
"year",
"of",
"the",
"given",
"calendar",
"field",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js#L932-L937 | |
36,026 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js | function (field, amount) {
if (!amount) {
return;
}
var self = this; // computer and retrieve original value
// computer and retrieve original value
var value = self.get(field);
var min = self.getActualMinimum(field);
... | javascript | function (field, amount) {
if (!amount) {
return;
}
var self = this; // computer and retrieve original value
// computer and retrieve original value
var value = self.get(field);
var min = self.getActualMinimum(field);
... | [
"function",
"(",
"field",
",",
"amount",
")",
"{",
"if",
"(",
"!",
"amount",
")",
"{",
"return",
";",
"}",
"var",
"self",
"=",
"this",
";",
"// computer and retrieve original value",
"// computer and retrieve original value",
"var",
"value",
"=",
"self",
".",
... | Adds a signed amount to the specified calendar field without changing larger fields.
A negative roll amount means to subtract from field without changing
larger fields. If the specified amount is 0, this method performs nothing.
@example
var d = new GregorianCalendar();
d.set(1999, GregorianCalendar.AUGUST, 31);
// ... | [
"Adds",
"a",
"signed",
"amount",
"to",
"the",
"specified",
"calendar",
"field",
"without",
"changing",
"larger",
"fields",
".",
"A",
"negative",
"roll",
"amount",
"means",
"to",
"subtract",
"from",
"field",
"without",
"changing",
"larger",
"fields",
".",
"If",... | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js#L959-L980 | |
36,027 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js | function (field) {
var fields = this.fields;
switch (field) {
case WEEK_OF_MONTH:
fields[DAY_OF_MONTH] = undefined;
break;
case DAY_OF_YEAR:
fields[MONTH] = undefined;
break;
case DAY_OF_WEEK:
... | javascript | function (field) {
var fields = this.fields;
switch (field) {
case WEEK_OF_MONTH:
fields[DAY_OF_MONTH] = undefined;
break;
case DAY_OF_YEAR:
fields[MONTH] = undefined;
break;
case DAY_OF_WEEK:
... | [
"function",
"(",
"field",
")",
"{",
"var",
"fields",
"=",
"this",
".",
"fields",
";",
"switch",
"(",
"field",
")",
"{",
"case",
"WEEK_OF_MONTH",
":",
"fields",
"[",
"DAY_OF_MONTH",
"]",
"=",
"undefined",
";",
"break",
";",
"case",
"DAY_OF_YEAR",
":",
"... | roll the year of the given calendar field.
@method rollYear
@param {Number} amount the signed amount to add to field.
roll the month of the given calendar field.
@param {Number} amount the signed amount to add to field.
@method rollMonth
roll the day of month of the given calendar field.
@method rollDayOfMonth
@par... | [
"roll",
"the",
"year",
"of",
"the",
"given",
"calendar",
"field",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js#L1041-L1058 | |
36,028 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js | function () {
var weekYear = this.getWeekYear();
if (weekYear === this.get(YEAR)) {
return this.getActualMaximum(WEEK_OF_YEAR);
} // Use the 2nd week for calculating the max of WEEK_OF_YEAR
// Use the 2nd week for calculating the max of WEEK_OF_YEAR
... | javascript | function () {
var weekYear = this.getWeekYear();
if (weekYear === this.get(YEAR)) {
return this.getActualMaximum(WEEK_OF_YEAR);
} // Use the 2nd week for calculating the max of WEEK_OF_YEAR
// Use the 2nd week for calculating the max of WEEK_OF_YEAR
... | [
"function",
"(",
")",
"{",
"var",
"weekYear",
"=",
"this",
".",
"getWeekYear",
"(",
")",
";",
"if",
"(",
"weekYear",
"===",
"this",
".",
"get",
"(",
"YEAR",
")",
")",
"{",
"return",
"this",
".",
"getActualMaximum",
"(",
"WEEK_OF_YEAR",
")",
";",
"}",... | Returns the number of weeks in the week year
represented by this GregorianCalendar.
For example, if this GregorianCalendar's date is
December 31, 2008 with the ISO
8601 compatible setting, this method will return 53 for the
period: December 29, 2008 to January 3, 2010
while getActualMaximum(WEEK_OF_YEAR) will return
5... | [
"Returns",
"the",
"number",
"of",
"weeks",
"in",
"the",
"week",
"year",
"represented",
"by",
"this",
"GregorianCalendar",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js#L1127-L1136 | |
36,029 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js | function () {
var year = this.get(YEAR); // implicitly complete
// implicitly complete
var weekOfYear = this.get(WEEK_OF_YEAR);
var month = this.get(MONTH);
if (month === GregorianCalendar.JANUARY) {
if (weekOfYear >= 52) {
... | javascript | function () {
var year = this.get(YEAR); // implicitly complete
// implicitly complete
var weekOfYear = this.get(WEEK_OF_YEAR);
var month = this.get(MONTH);
if (month === GregorianCalendar.JANUARY) {
if (weekOfYear >= 52) {
... | [
"function",
"(",
")",
"{",
"var",
"year",
"=",
"this",
".",
"get",
"(",
"YEAR",
")",
";",
"// implicitly complete",
"// implicitly complete",
"var",
"weekOfYear",
"=",
"this",
".",
"get",
"(",
"WEEK_OF_YEAR",
")",
";",
"var",
"month",
"=",
"this",
".",
... | Returns the week year represented by this GregorianCalendar.
The dates in the weeks between 1 and the
maximum week number of the week year have the same week year value
that may be one year before or after the calendar year value.
@return {Number} the week year represented by this GregorianCalendar. | [
"Returns",
"the",
"week",
"year",
"represented",
"by",
"this",
"GregorianCalendar",
".",
"The",
"dates",
"in",
"the",
"weeks",
"between",
"1",
"and",
"the",
"maximum",
"week",
"number",
"of",
"the",
"week",
"year",
"have",
"the",
"same",
"week",
"year",
"v... | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js#L1145-L1160 | |
36,030 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js | function () {
if (this.time === undefined) {
this.computeTime();
}
var cal = new GregorianCalendar(this.timezoneOffset, this.locale);
cal.setTime(this.time);
return cal;
} | javascript | function () {
if (this.time === undefined) {
this.computeTime();
}
var cal = new GregorianCalendar(this.timezoneOffset, this.locale);
cal.setTime(this.time);
return cal;
} | [
"function",
"(",
")",
"{",
"if",
"(",
"this",
".",
"time",
"===",
"undefined",
")",
"{",
"this",
".",
"computeTime",
"(",
")",
";",
"}",
"var",
"cal",
"=",
"new",
"GregorianCalendar",
"(",
"this",
".",
"timezoneOffset",
",",
"this",
".",
"locale",
")... | Creates and returns a copy of this object.
@returns {KISSY.Date.Gregorian} | [
"Creates",
"and",
"returns",
"a",
"copy",
"of",
"this",
"object",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/date/gregorian.js#L1203-L1210 | |
36,031 | danmilon/passbookster | lib/Pass.js | Pass | function Pass(style, fields, opts, cb) {
Stream.call(this)
// Get our own shallow copy of the fields
this.fields = _.extend({}, fields)
this.style = style
this.opts = opts
if (!this.fields[style]) {
this.fields[style] = {}
}
// Copy structure fields to style
if (this.fields.structure) {
... | javascript | function Pass(style, fields, opts, cb) {
Stream.call(this)
// Get our own shallow copy of the fields
this.fields = _.extend({}, fields)
this.style = style
this.opts = opts
if (!this.fields[style]) {
this.fields[style] = {}
}
// Copy structure fields to style
if (this.fields.structure) {
... | [
"function",
"Pass",
"(",
"style",
",",
"fields",
",",
"opts",
",",
"cb",
")",
"{",
"Stream",
".",
"call",
"(",
"this",
")",
"// Get our own shallow copy of the fields",
"this",
".",
"fields",
"=",
"_",
".",
"extend",
"(",
"{",
"}",
",",
"fields",
")",
... | Generates a pass over a streaming interface or optionally a callback
@param {String} style Style of the pass
@param {Object} fields Pass fields
@param {Object} opts Extra options
@param {Function} cb Callback function | [
"Generates",
"a",
"pass",
"over",
"a",
"streaming",
"interface",
"or",
"optionally",
"a",
"callback"
] | 92d8140b5c9d3b6db31e32a8c2ae17a7b56c8490 | https://github.com/danmilon/passbookster/blob/92d8140b5c9d3b6db31e32a8c2ae17a7b56c8490/lib/Pass.js#L21-L54 |
36,032 | enmasseio/hypertimer | lib/synchronization/slave.js | sync | function sync() {
// retrieve latency, then wait 1 sec
function getLatencyAndWait() {
var result = null;
if (isDestroyed) {
return Promise.resolve(result);
}
return getLatency(slave)
.then(function (latency) { result = latency }) // store the retrieved latency
... | javascript | function sync() {
// retrieve latency, then wait 1 sec
function getLatencyAndWait() {
var result = null;
if (isDestroyed) {
return Promise.resolve(result);
}
return getLatency(slave)
.then(function (latency) { result = latency }) // store the retrieved latency
... | [
"function",
"sync",
"(",
")",
"{",
"// retrieve latency, then wait 1 sec",
"function",
"getLatencyAndWait",
"(",
")",
"{",
"var",
"result",
"=",
"null",
";",
"if",
"(",
"isDestroyed",
")",
"{",
"return",
"Promise",
".",
"resolve",
"(",
"result",
")",
";",
"}... | Sync with the time of the master. Emits a 'change' message
@private | [
"Sync",
"with",
"the",
"time",
"of",
"the",
"master",
".",
"Emits",
"a",
"change",
"message"
] | 856ff0a8b7ac2f327a0c755b96b339c63eaf7c89 | https://github.com/enmasseio/hypertimer/blob/856ff0a8b7ac2f327a0c755b96b339c63eaf7c89/lib/synchronization/slave.js#L41-L93 |
36,033 | enmasseio/hypertimer | lib/synchronization/slave.js | getLatencyAndWait | function getLatencyAndWait() {
var result = null;
if (isDestroyed) {
return Promise.resolve(result);
}
return getLatency(slave)
.then(function (latency) { result = latency }) // store the retrieved latency
.catch(function (err) { console.log(err) }) // just log... | javascript | function getLatencyAndWait() {
var result = null;
if (isDestroyed) {
return Promise.resolve(result);
}
return getLatency(slave)
.then(function (latency) { result = latency }) // store the retrieved latency
.catch(function (err) { console.log(err) }) // just log... | [
"function",
"getLatencyAndWait",
"(",
")",
"{",
"var",
"result",
"=",
"null",
";",
"if",
"(",
"isDestroyed",
")",
"{",
"return",
"Promise",
".",
"resolve",
"(",
"result",
")",
";",
"}",
"return",
"getLatency",
"(",
"slave",
")",
".",
"then",
"(",
"func... | retrieve latency, then wait 1 sec | [
"retrieve",
"latency",
"then",
"wait",
"1",
"sec"
] | 856ff0a8b7ac2f327a0c755b96b339c63eaf7c89 | https://github.com/enmasseio/hypertimer/blob/856ff0a8b7ac2f327a0c755b96b339c63eaf7c89/lib/synchronization/slave.js#L43-L55 |
36,034 | enmasseio/hypertimer | lib/synchronization/slave.js | getLatency | function getLatency(emitter) {
var start = Date.now();
return emitter.request('time')
.then(function (timestamp) {
var end = Date.now();
var latency = (end - start) / 2;
var time = timestamp + latency;
// apply the first ever retrieved offset immediately.
... | javascript | function getLatency(emitter) {
var start = Date.now();
return emitter.request('time')
.then(function (timestamp) {
var end = Date.now();
var latency = (end - start) / 2;
var time = timestamp + latency;
// apply the first ever retrieved offset immediately.
... | [
"function",
"getLatency",
"(",
"emitter",
")",
"{",
"var",
"start",
"=",
"Date",
".",
"now",
"(",
")",
";",
"return",
"emitter",
".",
"request",
"(",
"'time'",
")",
".",
"then",
"(",
"function",
"(",
"timestamp",
")",
"{",
"var",
"end",
"=",
"Date",
... | Request the time of the master and calculate the latency from the
roundtrip time
@param {{request: function}} emitter
@returns {Promise.<number | null>} returns the latency
@private | [
"Request",
"the",
"time",
"of",
"the",
"master",
"and",
"calculate",
"the",
"latency",
"from",
"the",
"roundtrip",
"time"
] | 856ff0a8b7ac2f327a0c755b96b339c63eaf7c89 | https://github.com/enmasseio/hypertimer/blob/856ff0a8b7ac2f327a0c755b96b339c63eaf7c89/lib/synchronization/slave.js#L102-L119 |
36,035 | rymizuki/node-hariko | lib/hariko-parser/structure/index.js | build | function build(data) {
const resources = resources_1.ResourcesStructure.create();
const annotations = annotations_1.AnnotationsStructure.create();
data.content[0].content.forEach((content) => {
if (content.element === 'annotation') {
annotations.add(content.content);
return;
... | javascript | function build(data) {
const resources = resources_1.ResourcesStructure.create();
const annotations = annotations_1.AnnotationsStructure.create();
data.content[0].content.forEach((content) => {
if (content.element === 'annotation') {
annotations.add(content.content);
return;
... | [
"function",
"build",
"(",
"data",
")",
"{",
"const",
"resources",
"=",
"resources_1",
".",
"ResourcesStructure",
".",
"create",
"(",
")",
";",
"const",
"annotations",
"=",
"annotations_1",
".",
"AnnotationsStructure",
".",
"create",
"(",
")",
";",
"data",
".... | Convert protagonist's parsing result to hariko's structure
@param data ProtagonistParseResult | [
"Convert",
"protagonist",
"s",
"parsing",
"result",
"to",
"hariko",
"s",
"structure"
] | 5668f832fb80ed1e20898f1b98d74672e46e1a1f | https://github.com/rymizuki/node-hariko/blob/5668f832fb80ed1e20898f1b98d74672e46e1a1f/lib/hariko-parser/structure/index.js#L9-L31 |
36,036 | keymetrics/trassingue | src/logger.js | Logger | function Logger (level, name) {
if (name) {
debug = require('debug')(typeof name === 'string' ? name : 'vxx');
}
this.level = level;
this.debug('Logger started');
} | javascript | function Logger (level, name) {
if (name) {
debug = require('debug')(typeof name === 'string' ? name : 'vxx');
}
this.level = level;
this.debug('Logger started');
} | [
"function",
"Logger",
"(",
"level",
",",
"name",
")",
"{",
"if",
"(",
"name",
")",
"{",
"debug",
"=",
"require",
"(",
"'debug'",
")",
"(",
"typeof",
"name",
"===",
"'string'",
"?",
"name",
":",
"'vxx'",
")",
";",
"}",
"this",
".",
"level",
"=",
"... | Creates a logger object.
@constructor | [
"Creates",
"a",
"logger",
"object",
"."
] | 1d283858b45e5fb42519dc1f39cffaaade601931 | https://github.com/keymetrics/trassingue/blob/1d283858b45e5fb42519dc1f39cffaaade601931/src/logger.js#L26-L32 |
36,037 | jldec/pub-server | server/handle-errors.js | error | function error(status, req, res, msg) {
debug('%s %s', status, req.originalUrl);
msg = msg || '';
var page = generator.page$['/' + status];
// 404 with no matching status page => redirect to home
if (!page && status === 404) {
if (generator.home) return res.redirect(302, '/');
if (serv... | javascript | function error(status, req, res, msg) {
debug('%s %s', status, req.originalUrl);
msg = msg || '';
var page = generator.page$['/' + status];
// 404 with no matching status page => redirect to home
if (!page && status === 404) {
if (generator.home) return res.redirect(302, '/');
if (serv... | [
"function",
"error",
"(",
"status",
",",
"req",
",",
"res",
",",
"msg",
")",
"{",
"debug",
"(",
"'%s %s'",
",",
"status",
",",
"req",
".",
"originalUrl",
")",
";",
"msg",
"=",
"msg",
"||",
"''",
";",
"var",
"page",
"=",
"generator",
".",
"page$",
... | general purpose error response | [
"general",
"purpose",
"error",
"response"
] | 2e11d2377cf5a0b31ca7fdcef78a433d0c4885df | https://github.com/jldec/pub-server/blob/2e11d2377cf5a0b31ca7fdcef78a433d0c4885df/server/handle-errors.js#L60-L87 |
36,038 | realtime-framework/RealtimeMessaging-Javascript | ortc.js | function(frame) {
if (script2) {
script2.parentNode.removeChild(script2);
script2 = null;
}
if (script) {
clearTimeout(tref);
script.parentNode.removeChild(script);
script.onreadystatechange = script.onerror =
script.onl... | javascript | function(frame) {
if (script2) {
script2.parentNode.removeChild(script2);
script2 = null;
}
if (script) {
clearTimeout(tref);
script.parentNode.removeChild(script);
script.onreadystatechange = script.onerror =
script.onl... | [
"function",
"(",
"frame",
")",
"{",
"if",
"(",
"script2",
")",
"{",
"script2",
".",
"parentNode",
".",
"removeChild",
"(",
"script2",
")",
";",
"script2",
"=",
"null",
";",
"}",
"if",
"(",
"script",
")",
"{",
"clearTimeout",
"(",
"tref",
")",
";",
... | Opera synchronous load trick. | [
"Opera",
"synchronous",
"load",
"trick",
"."
] | 0a13dbd1457e77783aa043a3ff411408bbd097ed | https://github.com/realtime-framework/RealtimeMessaging-Javascript/blob/0a13dbd1457e77783aa043a3ff411408bbd097ed/ortc.js#L1527-L1541 | |
36,039 | realtime-framework/RealtimeMessaging-Javascript | ortc.js | function(url, constructReceiver, user_callback) {
var id = 'a' + utils.random_string(6);
var url_id = url + '?c=' + escape(WPrefix + '.' + id);
// Callback will be called exactly once.
var callback = function(frame) {
delete _window[WPrefix][id];
user_callback(frame);
};
var clo... | javascript | function(url, constructReceiver, user_callback) {
var id = 'a' + utils.random_string(6);
var url_id = url + '?c=' + escape(WPrefix + '.' + id);
// Callback will be called exactly once.
var callback = function(frame) {
delete _window[WPrefix][id];
user_callback(frame);
};
var clo... | [
"function",
"(",
"url",
",",
"constructReceiver",
",",
"user_callback",
")",
"{",
"var",
"id",
"=",
"'a'",
"+",
"utils",
".",
"random_string",
"(",
"6",
")",
";",
"var",
"url_id",
"=",
"url",
"+",
"'?c='",
"+",
"escape",
"(",
"WPrefix",
"+",
"'.'",
"... | Abstract away code that handles global namespace pollution. | [
"Abstract",
"away",
"code",
"that",
"handles",
"global",
"namespace",
"pollution",
"."
] | 0a13dbd1457e77783aa043a3ff411408bbd097ed | https://github.com/realtime-framework/RealtimeMessaging-Javascript/blob/0a13dbd1457e77783aa043a3ff411408bbd097ed/ortc.js#L1696-L1713 | |
36,040 | racker/node-zookeeper-client | lib/client.js | wrapWorkAndCallback | function wrapWorkAndCallback(work, callback) {
return function(err) {
work.stop(err);
callback.apply(this, arguments);
};
} | javascript | function wrapWorkAndCallback(work, callback) {
return function(err) {
work.stop(err);
callback.apply(this, arguments);
};
} | [
"function",
"wrapWorkAndCallback",
"(",
"work",
",",
"callback",
")",
"{",
"return",
"function",
"(",
"err",
")",
"{",
"work",
".",
"stop",
"(",
"err",
")",
";",
"callback",
".",
"apply",
"(",
"this",
",",
"arguments",
")",
";",
"}",
";",
"}"
] | Returns back a function that wraps the original callback.
@param {Work} work object that needs to be stopped.
@param {Function} callback invoked in lock acquistion.
@return {Function} wrapper function that encompasses original callback. | [
"Returns",
"back",
"a",
"function",
"that",
"wraps",
"the",
"original",
"callback",
"."
] | 658fd4900c4d1f410cd8522487a6a75e7dd25f9c | https://github.com/racker/node-zookeeper-client/blob/658fd4900c4d1f410cd8522487a6a75e7dd25f9c/lib/client.js#L474-L479 |
36,041 | racker/node-zookeeper-client | lib/client.js | function(reaped) {
childCount += 1;
if (reaped) {
self.options.log.trace1('Incrementing reapCount', {current: reapCount});
reapCount += 1;
}
if (childCount >= children.length) {
cbWrapper(function() {
... | javascript | function(reaped) {
childCount += 1;
if (reaped) {
self.options.log.trace1('Incrementing reapCount', {current: reapCount});
reapCount += 1;
}
if (childCount >= children.length) {
cbWrapper(function() {
... | [
"function",
"(",
"reaped",
")",
"{",
"childCount",
"+=",
"1",
";",
"if",
"(",
"reaped",
")",
"{",
"self",
".",
"options",
".",
"log",
".",
"trace1",
"(",
"'Incrementing reapCount'",
",",
"{",
"current",
":",
"reapCount",
"}",
")",
";",
"reapCount",
"+=... | for each child, do a get. | [
"for",
"each",
"child",
"do",
"a",
"get",
"."
] | 658fd4900c4d1f410cd8522487a6a75e7dd25f9c | https://github.com/racker/node-zookeeper-client/blob/658fd4900c4d1f410cd8522487a6a75e7dd25f9c/lib/client.js#L601-L612 | |
36,042 | andjosh/mongo-throttle | lib/throttler.js | throttleMiddleware | function throttleMiddleware (request, response, next) {
var ip = null
if (config.useCustomHeader && request.headers[config.useCustomHeader]) {
ip = request.headers[config.useCustomHeader]
} else {
ip = request.headers['x-forwarded-for'] ||
request.connection.remoteAddress ||
req... | javascript | function throttleMiddleware (request, response, next) {
var ip = null
if (config.useCustomHeader && request.headers[config.useCustomHeader]) {
ip = request.headers[config.useCustomHeader]
} else {
ip = request.headers['x-forwarded-for'] ||
request.connection.remoteAddress ||
req... | [
"function",
"throttleMiddleware",
"(",
"request",
",",
"response",
",",
"next",
")",
"{",
"var",
"ip",
"=",
"null",
"if",
"(",
"config",
".",
"useCustomHeader",
"&&",
"request",
".",
"headers",
"[",
"config",
".",
"useCustomHeader",
"]",
")",
"{",
"ip",
... | Check for request limit on the requesting IP
@access public
@param {object} request Express-style request
@param {object} response Express-style response
@param {function} next Express-style next callback | [
"Check",
"for",
"request",
"limit",
"on",
"the",
"requesting",
"IP"
] | 8bb6a488b3a246379b5a4a77b330b68e0ed5375a | https://github.com/andjosh/mongo-throttle/blob/8bb6a488b3a246379b5a4a77b330b68e0ed5375a/lib/throttler.js#L75-L117 |
36,043 | enmasseio/hypertimer | lib/synchronization/socket-emitter.js | send | function send (event, data) {
var envelope = {
event: event,
data: data
};
debug('send', envelope);
socket.send(JSON.stringify(envelope));
} | javascript | function send (event, data) {
var envelope = {
event: event,
data: data
};
debug('send', envelope);
socket.send(JSON.stringify(envelope));
} | [
"function",
"send",
"(",
"event",
",",
"data",
")",
"{",
"var",
"envelope",
"=",
"{",
"event",
":",
"event",
",",
"data",
":",
"data",
"}",
";",
"debug",
"(",
"'send'",
",",
"envelope",
")",
";",
"socket",
".",
"send",
"(",
"JSON",
".",
"stringify"... | Send an event
@param {string} event
@param {*} data | [
"Send",
"an",
"event"
] | 856ff0a8b7ac2f327a0c755b96b339c63eaf7c89 | https://github.com/enmasseio/hypertimer/blob/856ff0a8b7ac2f327a0c755b96b339c63eaf7c89/lib/synchronization/socket-emitter.js#L21-L28 |
36,044 | enmasseio/hypertimer | lib/synchronization/socket-emitter.js | request | function request (event, data) {
return new Promise(function (resolve, reject) {
// put the data in an envelope with id
var id = getId();
var envelope = {
event: event,
id: id,
data: data
};
// add the request to the list with requests in progress
queue[i... | javascript | function request (event, data) {
return new Promise(function (resolve, reject) {
// put the data in an envelope with id
var id = getId();
var envelope = {
event: event,
id: id,
data: data
};
// add the request to the list with requests in progress
queue[i... | [
"function",
"request",
"(",
"event",
",",
"data",
")",
"{",
"return",
"new",
"Promise",
"(",
"function",
"(",
"resolve",
",",
"reject",
")",
"{",
"// put the data in an envelope with id",
"var",
"id",
"=",
"getId",
"(",
")",
";",
"var",
"envelope",
"=",
"{... | Request an event, await a response
@param {string} event
@param {*} data
@return {Promise} Returns a promise which resolves with the reply | [
"Request",
"an",
"event",
"await",
"a",
"response"
] | 856ff0a8b7ac2f327a0c755b96b339c63eaf7c89 | https://github.com/enmasseio/hypertimer/blob/856ff0a8b7ac2f327a0c755b96b339c63eaf7c89/lib/synchronization/socket-emitter.js#L36-L59 |
36,045 | pnevyk/tipograph | scripts/readme.js | dummyMarkdown | function dummyMarkdown() {
var codeBlock = /^```/;
var quoteBlock = /^>/;
var listBlock = /^\* /;
var commentInline = '<!--.*-->';
var codeInline = '`.+`';
function split(content) {
var pattern = new RegExp([commentInline, codeInline].join('|'), 'g');
var result = null;
... | javascript | function dummyMarkdown() {
var codeBlock = /^```/;
var quoteBlock = /^>/;
var listBlock = /^\* /;
var commentInline = '<!--.*-->';
var codeInline = '`.+`';
function split(content) {
var pattern = new RegExp([commentInline, codeInline].join('|'), 'g');
var result = null;
... | [
"function",
"dummyMarkdown",
"(",
")",
"{",
"var",
"codeBlock",
"=",
"/",
"^```",
"/",
";",
"var",
"quoteBlock",
"=",
"/",
"^>",
"/",
";",
"var",
"listBlock",
"=",
"/",
"^\\* ",
"/",
";",
"var",
"commentInline",
"=",
"'<!--.*-->'",
";",
"var",
"codeInl... | this format preprocessor is far from being full markdown, it is built to be usable for tipograph readme in the future, this may grow into full markdown support | [
"this",
"format",
"preprocessor",
"is",
"far",
"from",
"being",
"full",
"markdown",
"it",
"is",
"built",
"to",
"be",
"usable",
"for",
"tipograph",
"readme",
"in",
"the",
"future",
"this",
"may",
"grow",
"into",
"full",
"markdown",
"support"
] | c7b0683e9449dbe1646ecc0f6201b7df925dbdf5 | https://github.com/pnevyk/tipograph/blob/c7b0683e9449dbe1646ecc0f6201b7df925dbdf5/scripts/readme.js#L74-L159 |
36,046 | cb1kenobi/cli-kit | site/semantic/tasks/docs/metadata.js | parser | function parser(file, callback) {
// file exit conditions
if(file.isNull()) {
return callback(null, file); // pass along
}
if(file.isStream()) {
return callback(new Error('Streaming not supported'));
}
try {
var
/** @type {string} */
text = String(file.contents.toString('utf8'... | javascript | function parser(file, callback) {
// file exit conditions
if(file.isNull()) {
return callback(null, file); // pass along
}
if(file.isStream()) {
return callback(new Error('Streaming not supported'));
}
try {
var
/** @type {string} */
text = String(file.contents.toString('utf8'... | [
"function",
"parser",
"(",
"file",
",",
"callback",
")",
"{",
"// file exit conditions",
"if",
"(",
"file",
".",
"isNull",
"(",
")",
")",
"{",
"return",
"callback",
"(",
"null",
",",
"file",
")",
";",
"// pass along",
"}",
"if",
"(",
"file",
".",
"isSt... | Parses a file for metadata and stores result in data object.
@param {File} file - object provided by map-stream.
@param {function(?,File)} - callback provided by map-stream to
reply when done. | [
"Parses",
"a",
"file",
"for",
"metadata",
"and",
"stores",
"result",
"in",
"data",
"object",
"."
] | 6d0d5ebb17cfbd11a8ec25ce8e4251f72cdc7734 | https://github.com/cb1kenobi/cli-kit/blob/6d0d5ebb17cfbd11a8ec25ce8e4251f72cdc7734/site/semantic/tasks/docs/metadata.js#L39-L130 |
36,047 | silkimen/browser-polyfill | polyfills/Element/polyfill.js | function (element, deep) {
var
childNodes = element.childNodes || [],
index = -1,
key, value, childNode;
if (element.nodeType === 1 && element.constructor !== Element) {
element.constructor = Element;
for (key in cache) {
value = cache[key];
element[key] = value;
}
}
while (childNode =... | javascript | function (element, deep) {
var
childNodes = element.childNodes || [],
index = -1,
key, value, childNode;
if (element.nodeType === 1 && element.constructor !== Element) {
element.constructor = Element;
for (key in cache) {
value = cache[key];
element[key] = value;
}
}
while (childNode =... | [
"function",
"(",
"element",
",",
"deep",
")",
"{",
"var",
"childNodes",
"=",
"element",
".",
"childNodes",
"||",
"[",
"]",
",",
"index",
"=",
"-",
"1",
",",
"key",
",",
"value",
",",
"childNode",
";",
"if",
"(",
"element",
".",
"nodeType",
"===",
"... | polyfill Element.prototype on an element | [
"polyfill",
"Element",
".",
"prototype",
"on",
"an",
"element"
] | f4baaf975c93e8b8fdcea11417f2287dcbd6d208 | https://github.com/silkimen/browser-polyfill/blob/f4baaf975c93e8b8fdcea11417f2287dcbd6d208/polyfills/Element/polyfill.js#L22-L42 | |
36,048 | silkimen/browser-polyfill | polyfills/Element/polyfill.js | bodyCheck | function bodyCheck() {
if (!(loopLimit--)) clearTimeout(interval);
if (document.body && !document.body.prototype && /(complete|interactive)/.test(document.readyState)) {
shiv(document, true);
if (interval && document.body.prototype) clearTimeout(interval);
return (!!document.body.prototype);
}
return f... | javascript | function bodyCheck() {
if (!(loopLimit--)) clearTimeout(interval);
if (document.body && !document.body.prototype && /(complete|interactive)/.test(document.readyState)) {
shiv(document, true);
if (interval && document.body.prototype) clearTimeout(interval);
return (!!document.body.prototype);
}
return f... | [
"function",
"bodyCheck",
"(",
")",
"{",
"if",
"(",
"!",
"(",
"loopLimit",
"--",
")",
")",
"clearTimeout",
"(",
"interval",
")",
";",
"if",
"(",
"document",
".",
"body",
"&&",
"!",
"document",
".",
"body",
".",
"prototype",
"&&",
"/",
"(complete|interac... | Apply Element prototype to the pre-existing DOM as soon as the body element appears. | [
"Apply",
"Element",
"prototype",
"to",
"the",
"pre",
"-",
"existing",
"DOM",
"as",
"soon",
"as",
"the",
"body",
"element",
"appears",
"."
] | f4baaf975c93e8b8fdcea11417f2287dcbd6d208 | https://github.com/silkimen/browser-polyfill/blob/f4baaf975c93e8b8fdcea11417f2287dcbd6d208/polyfills/Element/polyfill.js#L79-L87 |
36,049 | enmasseio/hypertimer | lib/hypertimer.js | _getConfig | function _getConfig () {
return {
paced: paced,
rate: rate,
deterministic: deterministic,
time: configuredTime,
master: master,
port: port
}
} | javascript | function _getConfig () {
return {
paced: paced,
rate: rate,
deterministic: deterministic,
time: configuredTime,
master: master,
port: port
}
} | [
"function",
"_getConfig",
"(",
")",
"{",
"return",
"{",
"paced",
":",
"paced",
",",
"rate",
":",
"rate",
",",
"deterministic",
":",
"deterministic",
",",
"time",
":",
"configuredTime",
",",
"master",
":",
"master",
",",
"port",
":",
"port",
"}",
"}"
] | Get the current configuration
@returns {{paced: boolean, rate: number, deterministic: boolean, time: *, master: *}}
Returns a copy of the current configuration
@private | [
"Get",
"the",
"current",
"configuration"
] | 856ff0a8b7ac2f327a0c755b96b339c63eaf7c89 | https://github.com/enmasseio/hypertimer/blob/856ff0a8b7ac2f327a0c755b96b339c63eaf7c89/lib/hypertimer.js#L358-L367 |
36,050 | enmasseio/hypertimer | lib/hypertimer.js | _rescheduleIntervals | function _rescheduleIntervals(now) {
for (var i = 0; i < timeouts.length; i++) {
var timeout = timeouts[i];
if (timeout.type === TYPE.INTERVAL) {
_rescheduleInterval(timeout, now);
}
}
} | javascript | function _rescheduleIntervals(now) {
for (var i = 0; i < timeouts.length; i++) {
var timeout = timeouts[i];
if (timeout.type === TYPE.INTERVAL) {
_rescheduleInterval(timeout, now);
}
}
} | [
"function",
"_rescheduleIntervals",
"(",
"now",
")",
"{",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"timeouts",
".",
"length",
";",
"i",
"++",
")",
"{",
"var",
"timeout",
"=",
"timeouts",
"[",
"i",
"]",
";",
"if",
"(",
"timeout",
".",
"typ... | Reschedule all intervals after a new time has been set.
@param {number} now
@private | [
"Reschedule",
"all",
"intervals",
"after",
"a",
"new",
"time",
"has",
"been",
"set",
"."
] | 856ff0a8b7ac2f327a0c755b96b339c63eaf7c89 | https://github.com/enmasseio/hypertimer/blob/856ff0a8b7ac2f327a0c755b96b339c63eaf7c89/lib/hypertimer.js#L476-L483 |
36,051 | enmasseio/hypertimer | lib/hypertimer.js | _rescheduleInterval | function _rescheduleInterval(timeout, now) {
timeout.occurrence = Math.round((now - timeout.firstTime) / timeout.interval);
timeout.time = timeout.firstTime + timeout.occurrence * timeout.interval;
} | javascript | function _rescheduleInterval(timeout, now) {
timeout.occurrence = Math.round((now - timeout.firstTime) / timeout.interval);
timeout.time = timeout.firstTime + timeout.occurrence * timeout.interval;
} | [
"function",
"_rescheduleInterval",
"(",
"timeout",
",",
"now",
")",
"{",
"timeout",
".",
"occurrence",
"=",
"Math",
".",
"round",
"(",
"(",
"now",
"-",
"timeout",
".",
"firstTime",
")",
"/",
"timeout",
".",
"interval",
")",
";",
"timeout",
".",
"time",
... | Reschedule the intervals after a new time has been set.
@param {Object} timeout
@param {number} now
@private | [
"Reschedule",
"the",
"intervals",
"after",
"a",
"new",
"time",
"has",
"been",
"set",
"."
] | 856ff0a8b7ac2f327a0c755b96b339c63eaf7c89 | https://github.com/enmasseio/hypertimer/blob/856ff0a8b7ac2f327a0c755b96b339c63eaf7c89/lib/hypertimer.js#L491-L494 |
36,052 | enmasseio/hypertimer | lib/hypertimer.js | _execTimeout | function _execTimeout(timeout, callback) {
// store the timeout in the queue with timeouts in progress
// it can be cleared when a clearTimeout is executed inside the callback
current[timeout.id] = timeout;
function finish() {
// in case of an interval we have to reschedule on next cycle
//... | javascript | function _execTimeout(timeout, callback) {
// store the timeout in the queue with timeouts in progress
// it can be cleared when a clearTimeout is executed inside the callback
current[timeout.id] = timeout;
function finish() {
// in case of an interval we have to reschedule on next cycle
//... | [
"function",
"_execTimeout",
"(",
"timeout",
",",
"callback",
")",
"{",
"// store the timeout in the queue with timeouts in progress",
"// it can be cleared when a clearTimeout is executed inside the callback",
"current",
"[",
"timeout",
".",
"id",
"]",
"=",
"timeout",
";",
"fun... | Execute a timeout
@param {{id: number, type: number, time: number, callback: function}} timeout
@param {function} [callback]
The callback is executed when the timeout's callback is
finished. Called without parameters
@private | [
"Execute",
"a",
"timeout"
] | 856ff0a8b7ac2f327a0c755b96b339c63eaf7c89 | https://github.com/enmasseio/hypertimer/blob/856ff0a8b7ac2f327a0c755b96b339c63eaf7c89/lib/hypertimer.js#L529-L571 |
36,053 | enmasseio/hypertimer | lib/hypertimer.js | _getExpiredTimeouts | function _getExpiredTimeouts(time) {
var i = 0;
while (i < timeouts.length && ((timeouts[i].time <= time) || !isFinite(timeouts[i].time))) {
i++;
}
var expired = timeouts.splice(0, i);
if (deterministic == false) {
// the array with expired timeouts is in deterministic order
// sh... | javascript | function _getExpiredTimeouts(time) {
var i = 0;
while (i < timeouts.length && ((timeouts[i].time <= time) || !isFinite(timeouts[i].time))) {
i++;
}
var expired = timeouts.splice(0, i);
if (deterministic == false) {
// the array with expired timeouts is in deterministic order
// sh... | [
"function",
"_getExpiredTimeouts",
"(",
"time",
")",
"{",
"var",
"i",
"=",
"0",
";",
"while",
"(",
"i",
"<",
"timeouts",
".",
"length",
"&&",
"(",
"(",
"timeouts",
"[",
"i",
"]",
".",
"time",
"<=",
"time",
")",
"||",
"!",
"isFinite",
"(",
"timeouts... | Remove all timeouts occurring before or on the provided time from the
queue and return them.
@param {number} time A timestamp
@returns {Array} returns an array containing all expired timeouts
@private | [
"Remove",
"all",
"timeouts",
"occurring",
"before",
"or",
"on",
"the",
"provided",
"time",
"from",
"the",
"queue",
"and",
"return",
"them",
"."
] | 856ff0a8b7ac2f327a0c755b96b339c63eaf7c89 | https://github.com/enmasseio/hypertimer/blob/856ff0a8b7ac2f327a0c755b96b339c63eaf7c89/lib/hypertimer.js#L580-L594 |
36,054 | enmasseio/hypertimer | lib/hypertimer.js | _schedule | function _schedule() {
// do not _schedule when there are timeouts in progress
// this can be the case with async timeouts in non-paced mode.
// _schedule will be executed again when all async timeouts are finished.
if (!paced && Object.keys(current).length > 0) {
return;
}
var next = tim... | javascript | function _schedule() {
// do not _schedule when there are timeouts in progress
// this can be the case with async timeouts in non-paced mode.
// _schedule will be executed again when all async timeouts are finished.
if (!paced && Object.keys(current).length > 0) {
return;
}
var next = tim... | [
"function",
"_schedule",
"(",
")",
"{",
"// do not _schedule when there are timeouts in progress",
"// this can be the case with async timeouts in non-paced mode.",
"// _schedule will be executed again when all async timeouts are finished.",
"if",
"(",
"!",
"paced",
"&&",
"Object",
".",
... | Reschedule all queued timeouts
@private | [
"Reschedule",
"all",
"queued",
"timeouts"
] | 856ff0a8b7ac2f327a0c755b96b339c63eaf7c89 | https://github.com/enmasseio/hypertimer/blob/856ff0a8b7ac2f327a0c755b96b339c63eaf7c89/lib/hypertimer.js#L600-L666 |
36,055 | enmasseio/hypertimer | lib/hypertimer.js | toTimestamp | function toTimestamp(date) {
var value =
(typeof date === 'number') ? date : // number
(date instanceof Date) ? date.valueOf() : // Date
new Date(date).valueOf(); // ISOString, momentjs, ...
if (isNaN(value)) {
throw new TypeError('Invalid date ' ... | javascript | function toTimestamp(date) {
var value =
(typeof date === 'number') ? date : // number
(date instanceof Date) ? date.valueOf() : // Date
new Date(date).valueOf(); // ISOString, momentjs, ...
if (isNaN(value)) {
throw new TypeError('Invalid date ' ... | [
"function",
"toTimestamp",
"(",
"date",
")",
"{",
"var",
"value",
"=",
"(",
"typeof",
"date",
"===",
"'number'",
")",
"?",
"date",
":",
"// number",
"(",
"date",
"instanceof",
"Date",
")",
"?",
"date",
".",
"valueOf",
"(",
")",
":",
"// Date",
"new",
... | Convert a Date, number, or ISOString to a number timestamp,
and validate whether it's a valid Date. The number Infinity is also
accepted as a valid timestamp
@param {Date | number | string} date
@return {number} Returns a unix timestamp, a number | [
"Convert",
"a",
"Date",
"number",
"or",
"ISOString",
"to",
"a",
"number",
"timestamp",
"and",
"validate",
"whether",
"it",
"s",
"a",
"valid",
"Date",
".",
"The",
"number",
"Infinity",
"is",
"also",
"accepted",
"as",
"a",
"valid",
"timestamp"
] | 856ff0a8b7ac2f327a0c755b96b339c63eaf7c89 | https://github.com/enmasseio/hypertimer/blob/856ff0a8b7ac2f327a0c755b96b339c63eaf7c89/lib/hypertimer.js#L675-L687 |
36,056 | pdubroy/tree-walk | index.js | pick | function pick(obj, keys) {
var result = {};
for (var i = 0, length = keys.length; i < length; i++) {
var key = keys[i];
if (key in obj) result[key] = obj[key];
}
return result;
} | javascript | function pick(obj, keys) {
var result = {};
for (var i = 0, length = keys.length; i < length; i++) {
var key = keys[i];
if (key in obj) result[key] = obj[key];
}
return result;
} | [
"function",
"pick",
"(",
"obj",
",",
"keys",
")",
"{",
"var",
"result",
"=",
"{",
"}",
";",
"for",
"(",
"var",
"i",
"=",
"0",
",",
"length",
"=",
"keys",
".",
"length",
";",
"i",
"<",
"length",
";",
"i",
"++",
")",
"{",
"var",
"key",
"=",
"... | Returns a copy of `obj` containing only the properties given by `keys`. | [
"Returns",
"a",
"copy",
"of",
"obj",
"containing",
"only",
"the",
"properties",
"given",
"by",
"keys",
"."
] | 3a8aa0a5eb3bac6714e9830267a3456b2653d641 | https://github.com/pdubroy/tree-walk/blob/3a8aa0a5eb3bac6714e9830267a3456b2653d641/index.js#L46-L53 |
36,057 | pdubroy/tree-walk | index.js | copyAndPush | function copyAndPush(arr, obj) {
var result = arr.slice();
result.push(obj);
return result;
} | javascript | function copyAndPush(arr, obj) {
var result = arr.slice();
result.push(obj);
return result;
} | [
"function",
"copyAndPush",
"(",
"arr",
",",
"obj",
")",
"{",
"var",
"result",
"=",
"arr",
".",
"slice",
"(",
")",
";",
"result",
".",
"push",
"(",
"obj",
")",
";",
"return",
"result",
";",
"}"
] | Makes a shallow copy of `arr`, and adds `obj` to the end of the copy. | [
"Makes",
"a",
"shallow",
"copy",
"of",
"arr",
"and",
"adds",
"obj",
"to",
"the",
"end",
"of",
"the",
"copy",
"."
] | 3a8aa0a5eb3bac6714e9830267a3456b2653d641 | https://github.com/pdubroy/tree-walk/blob/3a8aa0a5eb3bac6714e9830267a3456b2653d641/index.js#L56-L60 |
36,058 | pdubroy/tree-walk | index.js | Walker | function Walker(traversalStrategy) {
if (!(this instanceof Walker))
return new Walker(traversalStrategy);
// There are two different strategy shorthands: if a single string is
// specified, treat the value of that property as the traversal target.
// If an array is specified, the traversal target is the no... | javascript | function Walker(traversalStrategy) {
if (!(this instanceof Walker))
return new Walker(traversalStrategy);
// There are two different strategy shorthands: if a single string is
// specified, treat the value of that property as the traversal target.
// If an array is specified, the traversal target is the no... | [
"function",
"Walker",
"(",
"traversalStrategy",
")",
"{",
"if",
"(",
"!",
"(",
"this",
"instanceof",
"Walker",
")",
")",
"return",
"new",
"Walker",
"(",
"traversalStrategy",
")",
";",
"// There are two different strategy shorthands: if a single string is",
"// specified... | Returns an object containing the walk functions. If `traversalStrategy` is specified, it is a function determining how objects should be traversed. Given an object, it returns the object to be recursively walked. The default strategy is equivalent to `_.identity` for regular objects, and for DOM nodes it returns the no... | [
"Returns",
"an",
"object",
"containing",
"the",
"walk",
"functions",
".",
"If",
"traversalStrategy",
"is",
"specified",
"it",
"is",
"a",
"function",
"determining",
"how",
"objects",
"should",
"be",
"traversed",
".",
"Given",
"an",
"object",
"it",
"returns",
"t... | 3a8aa0a5eb3bac6714e9830267a3456b2653d641 | https://github.com/pdubroy/tree-walk/blob/3a8aa0a5eb3bac6714e9830267a3456b2653d641/index.js#L125-L145 |
36,059 | rricard/koa-swagger | lib/index.js | createMiddleware | function createMiddleware(router, validator) {
/**
* Checks request and response against a swagger spec
* Uses the usual koa context attributes
* Uses the koa-bodyparser context attribute
* Sets a new context attribute: {object} parameter
*/
return function* middleware(next) {
// Routing matches
... | javascript | function createMiddleware(router, validator) {
/**
* Checks request and response against a swagger spec
* Uses the usual koa context attributes
* Uses the koa-bodyparser context attribute
* Sets a new context attribute: {object} parameter
*/
return function* middleware(next) {
// Routing matches
... | [
"function",
"createMiddleware",
"(",
"router",
",",
"validator",
")",
"{",
"/**\n * Checks request and response against a swagger spec\n * Uses the usual koa context attributes\n * Uses the koa-bodyparser context attribute\n * Sets a new context attribute: {object} parameter\n */",
"retu... | Creates the generator from the swagger router & validator
@param router {routington} A swagger definition
@param validator {function(object, Schema)} JSON-Schema validator function
@returns {function*} The created middleware | [
"Creates",
"the",
"generator",
"from",
"the",
"swagger",
"router",
"&",
"validator"
] | 1c2d6cef6fa594a4b5a7697192b28df512c0ed73 | https://github.com/rricard/koa-swagger/blob/1c2d6cef6fa594a4b5a7697192b28df512c0ed73/lib/index.js#L16-L50 |
36,060 | keymetrics/trassingue | index.js | start | function start(projectConfig) {
var config = initConfig(projectConfig);
if (traceApi.isActive() && !config.forceNewAgent_) { // already started.
throw new Error('Cannot call start on an already started agent.');
}
if (!config.enabled) {
return traceApi;
}
if (config.logLevel < 0) {
config.log... | javascript | function start(projectConfig) {
var config = initConfig(projectConfig);
if (traceApi.isActive() && !config.forceNewAgent_) { // already started.
throw new Error('Cannot call start on an already started agent.');
}
if (!config.enabled) {
return traceApi;
}
if (config.logLevel < 0) {
config.log... | [
"function",
"start",
"(",
"projectConfig",
")",
"{",
"var",
"config",
"=",
"initConfig",
"(",
"projectConfig",
")",
";",
"if",
"(",
"traceApi",
".",
"isActive",
"(",
")",
"&&",
"!",
"config",
".",
"forceNewAgent_",
")",
"{",
"// already started.",
"throw",
... | Start the Trace agent that will make your application available for
tracing with Stackdriver Trace.
@param {object=} config - Trace configuration
@resource [Introductory video]{@link
https://www.youtube.com/watch?v=NCFDqeo7AeY}
@example
trace.start(); | [
"Start",
"the",
"Trace",
"agent",
"that",
"will",
"make",
"your",
"application",
"available",
"for",
"tracing",
"with",
"Stackdriver",
"Trace",
"."
] | 1d283858b45e5fb42519dc1f39cffaaade601931 | https://github.com/keymetrics/trassingue/blob/1d283858b45e5fb42519dc1f39cffaaade601931/index.js#L71-L117 |
36,061 | takuyaa/doublearray | doublearray.js | function (signed, bytes, size) {
if (signed) {
switch(bytes) {
case 1:
return new Int8Array(size);
case 2:
return new Int16Array(size);
case 4:
return new Int32Array(size);
default:
... | javascript | function (signed, bytes, size) {
if (signed) {
switch(bytes) {
case 1:
return new Int8Array(size);
case 2:
return new Int16Array(size);
case 4:
return new Int32Array(size);
default:
... | [
"function",
"(",
"signed",
",",
"bytes",
",",
"size",
")",
"{",
"if",
"(",
"signed",
")",
"{",
"switch",
"(",
"bytes",
")",
"{",
"case",
"1",
":",
"return",
"new",
"Int8Array",
"(",
"size",
")",
";",
"case",
"2",
":",
"return",
"new",
"Int16Array",... | Array utility functions | [
"Array",
"utility",
"functions"
] | d026d9dce65c7c414e643b55d0774f080e606a09 | https://github.com/takuyaa/doublearray/blob/d026d9dce65c7c414e643b55d0774f080e606a09/doublearray.js#L618-L642 | |
36,062 | jldec/pub-server | server/serve-statics.js | scan | function scan(sp, cb) {
cb = u.onceMaybe(cb);
var timer = u.timer();
sp.route = sp.route || '/';
var src = sp.src;
// only construct src, defaults, sendOpts etc. once
if (!src) {
sp.name = sp.name || 'staticPath:' + sp.path;
sp.depth = sp.depth || opts.staticDepth || 5;
sp.ma... | javascript | function scan(sp, cb) {
cb = u.onceMaybe(cb);
var timer = u.timer();
sp.route = sp.route || '/';
var src = sp.src;
// only construct src, defaults, sendOpts etc. once
if (!src) {
sp.name = sp.name || 'staticPath:' + sp.path;
sp.depth = sp.depth || opts.staticDepth || 5;
sp.ma... | [
"function",
"scan",
"(",
"sp",
",",
"cb",
")",
"{",
"cb",
"=",
"u",
".",
"onceMaybe",
"(",
"cb",
")",
";",
"var",
"timer",
"=",
"u",
".",
"timer",
"(",
")",
";",
"sp",
".",
"route",
"=",
"sp",
".",
"route",
"||",
"'/'",
";",
"var",
"src",
"... | repeatable scan for single staticPath | [
"repeatable",
"scan",
"for",
"single",
"staticPath"
] | 2e11d2377cf5a0b31ca7fdcef78a433d0c4885df | https://github.com/jldec/pub-server/blob/2e11d2377cf5a0b31ca7fdcef78a433d0c4885df/server/serve-statics.js#L128-L160 |
36,063 | MozillaReality/gamepad-plus | standard-mapper/gamepad.js | function () {
var gamepadSupportAvailable = navigator.getGamepads ||
!!navigator.webkitGetGamepads ||
!!navigator.webkitGamepads;
if (!gamepadSupportAvailable) {
// It doesn't seem Gamepad API is available, show a message telling
// the visitor about it.
window.tester.showNotS... | javascript | function () {
var gamepadSupportAvailable = navigator.getGamepads ||
!!navigator.webkitGetGamepads ||
!!navigator.webkitGamepads;
if (!gamepadSupportAvailable) {
// It doesn't seem Gamepad API is available, show a message telling
// the visitor about it.
window.tester.showNotS... | [
"function",
"(",
")",
"{",
"var",
"gamepadSupportAvailable",
"=",
"navigator",
".",
"getGamepads",
"||",
"!",
"!",
"navigator",
".",
"webkitGetGamepads",
"||",
"!",
"!",
"navigator",
".",
"webkitGamepads",
";",
"if",
"(",
"!",
"gamepadSupportAvailable",
")",
"... | Initialize support for Gamepad API. | [
"Initialize",
"support",
"for",
"Gamepad",
"API",
"."
] | b3cc035c524f3fde7c46ad2e2fb94ab61d1bc6cb | https://github.com/MozillaReality/gamepad-plus/blob/b3cc035c524f3fde7c46ad2e2fb94ab61d1bc6cb/standard-mapper/gamepad.js#L36-L59 | |
36,064 | MozillaReality/gamepad-plus | standard-mapper/gamepad.js | function (event) {
// Add the new gamepad on the list of gamepads to look after.
gamepadSupport.gamepads.push(event.gamepad);
// Ask the tester to update the screen to show more gamepads.
window.tester.updateGamepads(gamepadSupport.gamepads);
// Start the polling loop to monitor button changes.
... | javascript | function (event) {
// Add the new gamepad on the list of gamepads to look after.
gamepadSupport.gamepads.push(event.gamepad);
// Ask the tester to update the screen to show more gamepads.
window.tester.updateGamepads(gamepadSupport.gamepads);
// Start the polling loop to monitor button changes.
... | [
"function",
"(",
"event",
")",
"{",
"// Add the new gamepad on the list of gamepads to look after.",
"gamepadSupport",
".",
"gamepads",
".",
"push",
"(",
"event",
".",
"gamepad",
")",
";",
"// Ask the tester to update the screen to show more gamepads.",
"window",
".",
"tester... | React to the gamepad being connected. | [
"React",
"to",
"the",
"gamepad",
"being",
"connected",
"."
] | b3cc035c524f3fde7c46ad2e2fb94ab61d1bc6cb | https://github.com/MozillaReality/gamepad-plus/blob/b3cc035c524f3fde7c46ad2e2fb94ab61d1bc6cb/standard-mapper/gamepad.js#L64-L73 | |
36,065 | MozillaReality/gamepad-plus | standard-mapper/gamepad.js | function (event) {
// Remove the gamepad from the list of gamepads to monitor.
for (var i in gamepadSupport.gamepads) {
if (gamepadSupport.gamepads[i].index === event.gamepad.index) {
gamepadSupport.gamepads.splice(i, 1);
break;
}
}
// If no gamepads are left, stop the polli... | javascript | function (event) {
// Remove the gamepad from the list of gamepads to monitor.
for (var i in gamepadSupport.gamepads) {
if (gamepadSupport.gamepads[i].index === event.gamepad.index) {
gamepadSupport.gamepads.splice(i, 1);
break;
}
}
// If no gamepads are left, stop the polli... | [
"function",
"(",
"event",
")",
"{",
"// Remove the gamepad from the list of gamepads to monitor.",
"for",
"(",
"var",
"i",
"in",
"gamepadSupport",
".",
"gamepads",
")",
"{",
"if",
"(",
"gamepadSupport",
".",
"gamepads",
"[",
"i",
"]",
".",
"index",
"===",
"event... | React to the gamepad being disconnected. | [
"React",
"to",
"the",
"gamepad",
"being",
"disconnected",
"."
] | b3cc035c524f3fde7c46ad2e2fb94ab61d1bc6cb | https://github.com/MozillaReality/gamepad-plus/blob/b3cc035c524f3fde7c46ad2e2fb94ab61d1bc6cb/standard-mapper/gamepad.js#L78-L95 | |
36,066 | MozillaReality/gamepad-plus | standard-mapper/gamepad.js | function (gamepadId) {
var gamepad = gamepadSupport.gamepads[gamepadId];
// Update all the buttons (and their corresponding labels) on screen.
window.tester.updateButton(gamepad.buttons[0], gamepadId, 'button-1');
window.tester.updateButton(gamepad.buttons[1], gamepadId, 'button-2');
window.tester.... | javascript | function (gamepadId) {
var gamepad = gamepadSupport.gamepads[gamepadId];
// Update all the buttons (and their corresponding labels) on screen.
window.tester.updateButton(gamepad.buttons[0], gamepadId, 'button-1');
window.tester.updateButton(gamepad.buttons[1], gamepadId, 'button-2');
window.tester.... | [
"function",
"(",
"gamepadId",
")",
"{",
"var",
"gamepad",
"=",
"gamepadSupport",
".",
"gamepads",
"[",
"gamepadId",
"]",
";",
"// Update all the buttons (and their corresponding labels) on screen.",
"window",
".",
"tester",
".",
"updateButton",
"(",
"gamepad",
".",
"b... | Call the tester with new state and ask it to update the visual representation of a given gamepad. | [
"Call",
"the",
"tester",
"with",
"new",
"state",
"and",
"ask",
"it",
"to",
"update",
"the",
"visual",
"representation",
"of",
"a",
"given",
"gamepad",
"."
] | b3cc035c524f3fde7c46ad2e2fb94ab61d1bc6cb | https://github.com/MozillaReality/gamepad-plus/blob/b3cc035c524f3fde7c46ad2e2fb94ab61d1bc6cb/standard-mapper/gamepad.js#L214-L271 | |
36,067 | cb1kenobi/cli-kit | site/semantic/tasks/admin/components/update.js | pushFiles | function pushFiles() {
console.info('Pushing files for ' + component);
git.push('origin', 'master', { args: '', cwd: outputDirectory }, function(error) {
console.info('Push completed successfully');
getSHA();
});
} | javascript | function pushFiles() {
console.info('Pushing files for ' + component);
git.push('origin', 'master', { args: '', cwd: outputDirectory }, function(error) {
console.info('Push completed successfully');
getSHA();
});
} | [
"function",
"pushFiles",
"(",
")",
"{",
"console",
".",
"info",
"(",
"'Pushing files for '",
"+",
"component",
")",
";",
"git",
".",
"push",
"(",
"'origin'",
",",
"'master'",
",",
"{",
"args",
":",
"''",
",",
"cwd",
":",
"outputDirectory",
"}",
",",
"f... | push changes to remote | [
"push",
"changes",
"to",
"remote"
] | 6d0d5ebb17cfbd11a8ec25ce8e4251f72cdc7734 | https://github.com/cb1kenobi/cli-kit/blob/6d0d5ebb17cfbd11a8ec25ce8e4251f72cdc7734/site/semantic/tasks/admin/components/update.js#L138-L144 |
36,068 | cb1kenobi/cli-kit | site/semantic/tasks/admin/components/update.js | getSHA | function getSHA() {
git.exec(versionOptions, function(error, version) {
version = version.trim();
createRelease(version);
});
} | javascript | function getSHA() {
git.exec(versionOptions, function(error, version) {
version = version.trim();
createRelease(version);
});
} | [
"function",
"getSHA",
"(",
")",
"{",
"git",
".",
"exec",
"(",
"versionOptions",
",",
"function",
"(",
"error",
",",
"version",
")",
"{",
"version",
"=",
"version",
".",
"trim",
"(",
")",
";",
"createRelease",
"(",
"version",
")",
";",
"}",
")",
";",
... | gets SHA of last commit | [
"gets",
"SHA",
"of",
"last",
"commit"
] | 6d0d5ebb17cfbd11a8ec25ce8e4251f72cdc7734 | https://github.com/cb1kenobi/cli-kit/blob/6d0d5ebb17cfbd11a8ec25ce8e4251f72cdc7734/site/semantic/tasks/admin/components/update.js#L147-L152 |
36,069 | cb1kenobi/cli-kit | site/semantic/tasks/admin/components/update.js | nextRepo | function nextRepo() {
console.log('Sleeping for 1 second...');
// avoid rate throttling
global.clearTimeout(timer);
timer = global.setTimeout(stepRepo, 100);
} | javascript | function nextRepo() {
console.log('Sleeping for 1 second...');
// avoid rate throttling
global.clearTimeout(timer);
timer = global.setTimeout(stepRepo, 100);
} | [
"function",
"nextRepo",
"(",
")",
"{",
"console",
".",
"log",
"(",
"'Sleeping for 1 second...'",
")",
";",
"// avoid rate throttling",
"global",
".",
"clearTimeout",
"(",
"timer",
")",
";",
"timer",
"=",
"global",
".",
"setTimeout",
"(",
"stepRepo",
",",
"100"... | Steps to next repository | [
"Steps",
"to",
"next",
"repository"
] | 6d0d5ebb17cfbd11a8ec25ce8e4251f72cdc7734 | https://github.com/cb1kenobi/cli-kit/blob/6d0d5ebb17cfbd11a8ec25ce8e4251f72cdc7734/site/semantic/tasks/admin/components/update.js#L165-L170 |
36,070 | danmilon/passbookster | lib/Template.js | Template | function Template(style, fields, opts) {
// throw early if style is incorrect
if (passFields.STYLES.indexOf(style) === -1) {
throw new Error('Incorrect passbook style ' + style)
}
this.style = style
this.opts = opts || {}
this.fields = fields || {}
// Set formatVersion by default
this.fields.... | javascript | function Template(style, fields, opts) {
// throw early if style is incorrect
if (passFields.STYLES.indexOf(style) === -1) {
throw new Error('Incorrect passbook style ' + style)
}
this.style = style
this.opts = opts || {}
this.fields = fields || {}
// Set formatVersion by default
this.fields.... | [
"function",
"Template",
"(",
"style",
",",
"fields",
",",
"opts",
")",
"{",
"// throw early if style is incorrect",
"if",
"(",
"passFields",
".",
"STYLES",
".",
"indexOf",
"(",
"style",
")",
"===",
"-",
"1",
")",
"{",
"throw",
"new",
"Error",
"(",
"'Incorr... | Create a passbook template.
A Template acts as a pass without having all its fields set.
Internally, on createPass it merely passes its fields and the extra ones
provided as an argument to a new Pass object
@param {String} style Pass style of the pass
@param {Object} fields Fields of the pass
@param {Object} opts ... | [
"Create",
"a",
"passbook",
"template",
".",
"A",
"Template",
"acts",
"as",
"a",
"pass",
"without",
"having",
"all",
"its",
"fields",
"set",
"."
] | 92d8140b5c9d3b6db31e32a8c2ae17a7b56c8490 | https://github.com/danmilon/passbookster/blob/92d8140b5c9d3b6db31e32a8c2ae17a7b56c8490/lib/Template.js#L15-L27 |
36,071 | syntax-tree/mdast-util-heading-range | index.js | headingRange | function headingRange(node, options, callback) {
var test = options
var ignoreFinalDefinitions = false
// Object, not regex.
if (test && typeof test === 'object' && !('exec' in test)) {
ignoreFinalDefinitions = test.ignoreFinalDefinitions === true
test = test.test
}
if (typeof test === 'string') {... | javascript | function headingRange(node, options, callback) {
var test = options
var ignoreFinalDefinitions = false
// Object, not regex.
if (test && typeof test === 'object' && !('exec' in test)) {
ignoreFinalDefinitions = test.ignoreFinalDefinitions === true
test = test.test
}
if (typeof test === 'string') {... | [
"function",
"headingRange",
"(",
"node",
",",
"options",
",",
"callback",
")",
"{",
"var",
"test",
"=",
"options",
"var",
"ignoreFinalDefinitions",
"=",
"false",
"// Object, not regex.",
"if",
"(",
"test",
"&&",
"typeof",
"test",
"===",
"'object'",
"&&",
"!",
... | Search `node` with `options` and invoke `callback`. | [
"Search",
"node",
"with",
"options",
"and",
"invoke",
"callback",
"."
] | 279fcee135713b25223dc615cfd8b4a87d5006ce | https://github.com/syntax-tree/mdast-util-heading-range/blob/279fcee135713b25223dc615cfd8b4a87d5006ce/index.js#L10-L38 |
36,072 | syntax-tree/mdast-util-heading-range | index.js | search | function search(root, test, skip, callback) {
var index = -1
var children = root.children
var length = children.length
var depth = null
var start = null
var end = null
var nodes
var clean
var child
while (++index < length) {
child = children[index]
if (closing(child, depth)) {
end = ... | javascript | function search(root, test, skip, callback) {
var index = -1
var children = root.children
var length = children.length
var depth = null
var start = null
var end = null
var nodes
var clean
var child
while (++index < length) {
child = children[index]
if (closing(child, depth)) {
end = ... | [
"function",
"search",
"(",
"root",
",",
"test",
",",
"skip",
",",
"callback",
")",
"{",
"var",
"index",
"=",
"-",
"1",
"var",
"children",
"=",
"root",
".",
"children",
"var",
"length",
"=",
"children",
".",
"length",
"var",
"depth",
"=",
"null",
"var... | Search a node for heading range. | [
"Search",
"a",
"node",
"for",
"heading",
"range",
"."
] | 279fcee135713b25223dc615cfd8b4a87d5006ce | https://github.com/syntax-tree/mdast-util-heading-range/blob/279fcee135713b25223dc615cfd8b4a87d5006ce/index.js#L41-L110 |
36,073 | dmitrisweb/raml-mocker-server | index.js | init | function init (prefs, callback) {
options = _.extend(defaults, prefs);
app = options.app || express();
app.use(cors());
ramlMocker.generate(options, process(function(requestsToMock){
requestsToMock.forEach(function(reqToMock){
addRoute(reqToMock);
});
log(new Array(30).join('='));
log('%s[%s]%s API rout... | javascript | function init (prefs, callback) {
options = _.extend(defaults, prefs);
app = options.app || express();
app.use(cors());
ramlMocker.generate(options, process(function(requestsToMock){
requestsToMock.forEach(function(reqToMock){
addRoute(reqToMock);
});
log(new Array(30).join('='));
log('%s[%s]%s API rout... | [
"function",
"init",
"(",
"prefs",
",",
"callback",
")",
"{",
"options",
"=",
"_",
".",
"extend",
"(",
"defaults",
",",
"prefs",
")",
";",
"app",
"=",
"options",
".",
"app",
"||",
"express",
"(",
")",
";",
"app",
".",
"use",
"(",
"cors",
"(",
")",... | Initializing RAML mocker server
@param {Function} cb callback executed af
@param {Object} prefs configuration object
@return {[type]} [description] | [
"Initializing",
"RAML",
"mocker",
"server"
] | baaa9313449ebafb5c9fa9e3d3dc4682cf9494b9 | https://github.com/dmitrisweb/raml-mocker-server/blob/baaa9313449ebafb5c9fa9e3d3dc4682cf9494b9/index.js#L31-L61 |
36,074 | CitizenScienceCenter/vuex-c3s | dist/vuex-c3s.es.js | logout | function logout(_ref3) {
var state = _ref3.state,
commit = _ref3.commit;
commit('c3s/user/SET_CURRENT_USER', null, {
root: true
});
commit('SET_ANON', false);
} | javascript | function logout(_ref3) {
var state = _ref3.state,
commit = _ref3.commit;
commit('c3s/user/SET_CURRENT_USER', null, {
root: true
});
commit('SET_ANON', false);
} | [
"function",
"logout",
"(",
"_ref3",
")",
"{",
"var",
"state",
"=",
"_ref3",
".",
"state",
",",
"commit",
"=",
"_ref3",
".",
"commit",
";",
"commit",
"(",
"'c3s/user/SET_CURRENT_USER'",
",",
"null",
",",
"{",
"root",
":",
"true",
"}",
")",
";",
"commit"... | Logout user and remove from local store
@param state
@param commit | [
"Logout",
"user",
"and",
"remove",
"from",
"local",
"store"
] | 6ecd72fc90ca84e87f1a84de1e32c434afb60e48 | https://github.com/CitizenScienceCenter/vuex-c3s/blob/6ecd72fc90ca84e87f1a84de1e32c434afb60e48/dist/vuex-c3s.es.js#L201-L208 |
36,075 | CitizenScienceCenter/vuex-c3s | dist/vuex-c3s.es.js | getActivities | function getActivities(_ref, _ref2) {
var state = _ref.state,
commit = _ref.commit,
dispatch = _ref.dispatch,
rootState = _ref.rootState;
var _ref3 = _slicedToArray(_ref2, 2),
search = _ref3[0],
limit = _ref3[1];
search = rison.encode(search);
return makeRequest... | javascript | function getActivities(_ref, _ref2) {
var state = _ref.state,
commit = _ref.commit,
dispatch = _ref.dispatch,
rootState = _ref.rootState;
var _ref3 = _slicedToArray(_ref2, 2),
search = _ref3[0],
limit = _ref3[1];
search = rison.encode(search);
return makeRequest... | [
"function",
"getActivities",
"(",
"_ref",
",",
"_ref2",
")",
"{",
"var",
"state",
"=",
"_ref",
".",
"state",
",",
"commit",
"=",
"_ref",
".",
"commit",
",",
"dispatch",
"=",
"_ref",
".",
"dispatch",
",",
"rootState",
"=",
"_ref",
".",
"rootState",
";",... | Retrieve an array of activities based on a provided query object
@param state
@param commit
@param dispatch
@param rootState
@param search
@returns {Promise<*|boolean|void>} | [
"Retrieve",
"an",
"array",
"of",
"activities",
"based",
"on",
"a",
"provided",
"query",
"object"
] | 6ecd72fc90ca84e87f1a84de1e32c434afb60e48 | https://github.com/CitizenScienceCenter/vuex-c3s/blob/6ecd72fc90ca84e87f1a84de1e32c434afb60e48/dist/vuex-c3s.es.js#L476-L491 |
36,076 | CitizenScienceCenter/vuex-c3s | dist/vuex-c3s.es.js | createActivity | function createActivity(_ref9, activity) {
var state = _ref9.state,
commit = _ref9.commit,
rootState = _ref9.rootState;
return makeRequest(commit, rootState.c3s.client.apis.Activities.create_activity, {
activity: activity
}, 'c3s/activity/SET_ACTIVITY');
} | javascript | function createActivity(_ref9, activity) {
var state = _ref9.state,
commit = _ref9.commit,
rootState = _ref9.rootState;
return makeRequest(commit, rootState.c3s.client.apis.Activities.create_activity, {
activity: activity
}, 'c3s/activity/SET_ACTIVITY');
} | [
"function",
"createActivity",
"(",
"_ref9",
",",
"activity",
")",
"{",
"var",
"state",
"=",
"_ref9",
".",
"state",
",",
"commit",
"=",
"_ref9",
".",
"commit",
",",
"rootState",
"=",
"_ref9",
".",
"rootState",
";",
"return",
"makeRequest",
"(",
"commit",
... | Create an activity
@param state
@param commit
@param rootState
@param activity
@returns {Promise<*|boolean|void>} | [
"Create",
"an",
"activity"
] | 6ecd72fc90ca84e87f1a84de1e32c434afb60e48 | https://github.com/CitizenScienceCenter/vuex-c3s/blob/6ecd72fc90ca84e87f1a84de1e32c434afb60e48/dist/vuex-c3s.es.js#L576-L583 |
36,077 | CitizenScienceCenter/vuex-c3s | dist/vuex-c3s.es.js | deleteActivity | function deleteActivity(_ref10, _ref11) {
var state = _ref10.state,
commit = _ref10.commit,
rootState = _ref10.rootState;
var _ref12 = _slicedToArray(_ref11, 2),
pid = _ref12[0],
localRemove = _ref12[1];
if (localRemove) commit('c3s/activity/SET_ACTIVITY', null);
return... | javascript | function deleteActivity(_ref10, _ref11) {
var state = _ref10.state,
commit = _ref10.commit,
rootState = _ref10.rootState;
var _ref12 = _slicedToArray(_ref11, 2),
pid = _ref12[0],
localRemove = _ref12[1];
if (localRemove) commit('c3s/activity/SET_ACTIVITY', null);
return... | [
"function",
"deleteActivity",
"(",
"_ref10",
",",
"_ref11",
")",
"{",
"var",
"state",
"=",
"_ref10",
".",
"state",
",",
"commit",
"=",
"_ref10",
".",
"commit",
",",
"rootState",
"=",
"_ref10",
".",
"rootState",
";",
"var",
"_ref12",
"=",
"_slicedToArray",
... | Delete an activity matching the supplied ID
@param state
@param commit
@param rootState
@param pid
@param localRemove
@returns {Promise<*|boolean|void>} | [
"Delete",
"an",
"activity",
"matching",
"the",
"supplied",
"ID"
] | 6ecd72fc90ca84e87f1a84de1e32c434afb60e48 | https://github.com/CitizenScienceCenter/vuex-c3s/blob/6ecd72fc90ca84e87f1a84de1e32c434afb60e48/dist/vuex-c3s.es.js#L594-L607 |
36,078 | CitizenScienceCenter/vuex-c3s | dist/vuex-c3s.es.js | deleteTasks | function deleteTasks(_ref12, tasks) {
var state = _ref12.state,
commit = _ref12.commit,
dispatch = _ref12.dispatch,
rootState = _ref12.rootState;
dispatch('SET_TASKS', null);
return makeRequest(commit, rootState.c3s.client.apis.Tasks.delete_tasks, {
tasks: tasks
}, 'c3s/tas... | javascript | function deleteTasks(_ref12, tasks) {
var state = _ref12.state,
commit = _ref12.commit,
dispatch = _ref12.dispatch,
rootState = _ref12.rootState;
dispatch('SET_TASKS', null);
return makeRequest(commit, rootState.c3s.client.apis.Tasks.delete_tasks, {
tasks: tasks
}, 'c3s/tas... | [
"function",
"deleteTasks",
"(",
"_ref12",
",",
"tasks",
")",
"{",
"var",
"state",
"=",
"_ref12",
".",
"state",
",",
"commit",
"=",
"_ref12",
".",
"commit",
",",
"dispatch",
"=",
"_ref12",
".",
"dispatch",
",",
"rootState",
"=",
"_ref12",
".",
"rootState"... | Delete an array of tasks
@param state
@param commit
@param dispatch
@param rootState
@param tasks
@returns {Promise<*|boolean|void>} | [
"Delete",
"an",
"array",
"of",
"tasks"
] | 6ecd72fc90ca84e87f1a84de1e32c434afb60e48 | https://github.com/CitizenScienceCenter/vuex-c3s/blob/6ecd72fc90ca84e87f1a84de1e32c434afb60e48/dist/vuex-c3s.es.js#L877-L886 |
36,079 | CitizenScienceCenter/vuex-c3s | dist/vuex-c3s.es.js | getProjects | function getProjects(_ref, _ref2) {
var state = _ref.state,
commit = _ref.commit,
dispatch = _ref.dispatch,
rootState = _ref.rootState;
var _ref3 = _slicedToArray(_ref2, 2),
search = _ref3[0],
limit = _ref3[1];
search = rison.encode(search);
return makeRequest(c... | javascript | function getProjects(_ref, _ref2) {
var state = _ref.state,
commit = _ref.commit,
dispatch = _ref.dispatch,
rootState = _ref.rootState;
var _ref3 = _slicedToArray(_ref2, 2),
search = _ref3[0],
limit = _ref3[1];
search = rison.encode(search);
return makeRequest(c... | [
"function",
"getProjects",
"(",
"_ref",
",",
"_ref2",
")",
"{",
"var",
"state",
"=",
"_ref",
".",
"state",
",",
"commit",
"=",
"_ref",
".",
"commit",
",",
"dispatch",
"=",
"_ref",
".",
"dispatch",
",",
"rootState",
"=",
"_ref",
".",
"rootState",
";",
... | Retrieve an array of projects based on a provided query object
@param state
@param commit
@param dispatch
@param rootState
@param search
@returns {Promise<*|boolean|void>} | [
"Retrieve",
"an",
"array",
"of",
"projects",
"based",
"on",
"a",
"provided",
"query",
"object"
] | 6ecd72fc90ca84e87f1a84de1e32c434afb60e48 | https://github.com/CitizenScienceCenter/vuex-c3s/blob/6ecd72fc90ca84e87f1a84de1e32c434afb60e48/dist/vuex-c3s.es.js#L1239-L1254 |
36,080 | CitizenScienceCenter/vuex-c3s | dist/vuex-c3s.es.js | createProject | function createProject(_ref8, project) {
var state = _ref8.state,
commit = _ref8.commit,
rootState = _ref8.rootState;
return makeRequest(commit, rootState.c3s.client.apis.Projects.create_project, {
project: project
}, 'c3s/project/SET_PROJECT');
} | javascript | function createProject(_ref8, project) {
var state = _ref8.state,
commit = _ref8.commit,
rootState = _ref8.rootState;
return makeRequest(commit, rootState.c3s.client.apis.Projects.create_project, {
project: project
}, 'c3s/project/SET_PROJECT');
} | [
"function",
"createProject",
"(",
"_ref8",
",",
"project",
")",
"{",
"var",
"state",
"=",
"_ref8",
".",
"state",
",",
"commit",
"=",
"_ref8",
".",
"commit",
",",
"rootState",
"=",
"_ref8",
".",
"rootState",
";",
"return",
"makeRequest",
"(",
"commit",
",... | Create a project
@param state
@param commit
@param rootState
@param activity
@returns {Promise<*|boolean|void>} | [
"Create",
"a",
"project"
] | 6ecd72fc90ca84e87f1a84de1e32c434afb60e48 | https://github.com/CitizenScienceCenter/vuex-c3s/blob/6ecd72fc90ca84e87f1a84de1e32c434afb60e48/dist/vuex-c3s.es.js#L1341-L1348 |
36,081 | CitizenScienceCenter/vuex-c3s | dist/vuex-c3s.es.js | deleteProject | function deleteProject(_ref9, _ref10) {
var state = _ref9.state,
commit = _ref9.commit,
rootState = _ref9.rootState;
var _ref11 = _slicedToArray(_ref10, 2),
pid = _ref11[0],
localRemove = _ref11[1];
if (localRemove) commit('c3s/project/SET_PROJECT', null);
return makeRe... | javascript | function deleteProject(_ref9, _ref10) {
var state = _ref9.state,
commit = _ref9.commit,
rootState = _ref9.rootState;
var _ref11 = _slicedToArray(_ref10, 2),
pid = _ref11[0],
localRemove = _ref11[1];
if (localRemove) commit('c3s/project/SET_PROJECT', null);
return makeRe... | [
"function",
"deleteProject",
"(",
"_ref9",
",",
"_ref10",
")",
"{",
"var",
"state",
"=",
"_ref9",
".",
"state",
",",
"commit",
"=",
"_ref9",
".",
"commit",
",",
"rootState",
"=",
"_ref9",
".",
"rootState",
";",
"var",
"_ref11",
"=",
"_slicedToArray",
"("... | Delete a project matching the supplied ID
@param state
@param commit
@param rootState
@param pid
@param localRemove
@returns {Promise<*|boolean|void>} | [
"Delete",
"a",
"project",
"matching",
"the",
"supplied",
"ID"
] | 6ecd72fc90ca84e87f1a84de1e32c434afb60e48 | https://github.com/CitizenScienceCenter/vuex-c3s/blob/6ecd72fc90ca84e87f1a84de1e32c434afb60e48/dist/vuex-c3s.es.js#L1359-L1372 |
36,082 | CitizenScienceCenter/vuex-c3s | dist/vuex-c3s.es.js | install | function install(Vue) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
Swagger({
url: options.swaggerURL,
requestInterceptor: function requestInterceptor(req) {
// req.headers['content-type'] = 'application/json'
if (options.store.state.c3s && o... | javascript | function install(Vue) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
Swagger({
url: options.swaggerURL,
requestInterceptor: function requestInterceptor(req) {
// req.headers['content-type'] = 'application/json'
if (options.store.state.c3s && o... | [
"function",
"install",
"(",
"Vue",
")",
"{",
"var",
"options",
"=",
"arguments",
".",
"length",
">",
"1",
"&&",
"arguments",
"[",
"1",
"]",
"!==",
"undefined",
"?",
"arguments",
"[",
"1",
"]",
":",
"{",
"}",
";",
"Swagger",
"(",
"{",
"url",
":",
... | Setup function for the plugin, must provide a store and a Swagger file URL
@param Vue
@param options | [
"Setup",
"function",
"for",
"the",
"plugin",
"must",
"provide",
"a",
"store",
"and",
"a",
"Swagger",
"file",
"URL"
] | 6ecd72fc90ca84e87f1a84de1e32c434afb60e48 | https://github.com/CitizenScienceCenter/vuex-c3s/blob/6ecd72fc90ca84e87f1a84de1e32c434afb60e48/dist/vuex-c3s.es.js#L1622-L1697 |
36,083 | keymetrics/trassingue | src/trace-writer.js | TraceWriter | function TraceWriter(logger, options) {
options = options || {};
EventEmitter.call(this);
/** @private */
this.logger_ = logger;
/** @private */
this.config_ = options;
/** @private {Array<string>} stringified traces to be published */
this.buffer_ = [];
/** @private {Object} default labels to be... | javascript | function TraceWriter(logger, options) {
options = options || {};
EventEmitter.call(this);
/** @private */
this.logger_ = logger;
/** @private */
this.config_ = options;
/** @private {Array<string>} stringified traces to be published */
this.buffer_ = [];
/** @private {Object} default labels to be... | [
"function",
"TraceWriter",
"(",
"logger",
",",
"options",
")",
"{",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"EventEmitter",
".",
"call",
"(",
"this",
")",
";",
"/** @private */",
"this",
".",
"logger_",
"=",
"logger",
";",
"/** @private */",
"this"... | Creates a basic trace writer.
@param {!Logger} logger The Trace Agent's logger object.
@param {Object} config A config object containing information about
authorization credentials.
@constructor | [
"Creates",
"a",
"basic",
"trace",
"writer",
"."
] | 1d283858b45e5fb42519dc1f39cffaaade601931 | https://github.com/keymetrics/trassingue/blob/1d283858b45e5fb42519dc1f39cffaaade601931/src/trace-writer.js#L38-L57 |
36,084 | mattbierner/hamt_plus | hamt.js | arraySpliceOut | function arraySpliceOut(mutate, at, arr) {
var newLen = arr.length - 1;
var i = 0;
var g = 0;
var out = arr;
if (mutate) {
i = g = at;
} else {
out = new Array(newLen);
while (i < at) {
out[g++] = arr[i++];
}
}
++i;
while (i <= newLen) {
... | javascript | function arraySpliceOut(mutate, at, arr) {
var newLen = arr.length - 1;
var i = 0;
var g = 0;
var out = arr;
if (mutate) {
i = g = at;
} else {
out = new Array(newLen);
while (i < at) {
out[g++] = arr[i++];
}
}
++i;
while (i <= newLen) {
... | [
"function",
"arraySpliceOut",
"(",
"mutate",
",",
"at",
",",
"arr",
")",
"{",
"var",
"newLen",
"=",
"arr",
".",
"length",
"-",
"1",
";",
"var",
"i",
"=",
"0",
";",
"var",
"g",
"=",
"0",
";",
"var",
"out",
"=",
"arr",
";",
"if",
"(",
"mutate",
... | Remove a value from an array.
@param mutate Should the input array be mutated?
@param at Index to remove.
@param arr Array. | [
"Remove",
"a",
"value",
"from",
"an",
"array",
"."
] | b8845c7343fdde3966f875d732248fec597cf538 | https://github.com/mattbierner/hamt_plus/blob/b8845c7343fdde3966f875d732248fec597cf538/hamt.js#L111-L131 |
36,085 | mattbierner/hamt_plus | hamt.js | arraySpliceIn | function arraySpliceIn(mutate, at, v, arr) {
var len = arr.length;
if (mutate) {
var _i = len;
while (_i >= at) {
arr[_i--] = arr[_i];
}arr[at] = v;
return arr;
}
var i = 0,
g = 0;
var out = new Array(len + 1);
while (i < at) {
out[g++]... | javascript | function arraySpliceIn(mutate, at, v, arr) {
var len = arr.length;
if (mutate) {
var _i = len;
while (_i >= at) {
arr[_i--] = arr[_i];
}arr[at] = v;
return arr;
}
var i = 0,
g = 0;
var out = new Array(len + 1);
while (i < at) {
out[g++]... | [
"function",
"arraySpliceIn",
"(",
"mutate",
",",
"at",
",",
"v",
",",
"arr",
")",
"{",
"var",
"len",
"=",
"arr",
".",
"length",
";",
"if",
"(",
"mutate",
")",
"{",
"var",
"_i",
"=",
"len",
";",
"while",
"(",
"_i",
">=",
"at",
")",
"{",
"arr",
... | Insert a value into an array.
@param mutate Should the input array be mutated?
@param at Index to insert at.
@param v Value to insert,
@param arr Array. | [
"Insert",
"a",
"value",
"into",
"an",
"array",
"."
] | b8845c7343fdde3966f875d732248fec597cf538 | https://github.com/mattbierner/hamt_plus/blob/b8845c7343fdde3966f875d732248fec597cf538/hamt.js#L141-L159 |
36,086 | mattbierner/hamt_plus | hamt.js | Leaf | function Leaf(edit, hash, key, value) {
return {
type: LEAF,
edit: edit,
hash: hash,
key: key,
value: value,
_modify: Leaf__modify
};
} | javascript | function Leaf(edit, hash, key, value) {
return {
type: LEAF,
edit: edit,
hash: hash,
key: key,
value: value,
_modify: Leaf__modify
};
} | [
"function",
"Leaf",
"(",
"edit",
",",
"hash",
",",
"key",
",",
"value",
")",
"{",
"return",
"{",
"type",
":",
"LEAF",
",",
"edit",
":",
"edit",
",",
"hash",
":",
"hash",
",",
"key",
":",
"key",
",",
"value",
":",
"value",
",",
"_modify",
":",
"... | Leaf holding a value.
@member edit Edit of the node.
@member hash Hash of key.
@member key Key.
@member value Value stored. | [
"Leaf",
"holding",
"a",
"value",
"."
] | b8845c7343fdde3966f875d732248fec597cf538 | https://github.com/mattbierner/hamt_plus/blob/b8845c7343fdde3966f875d732248fec597cf538/hamt.js#L187-L196 |
36,087 | mattbierner/hamt_plus | hamt.js | Collision | function Collision(edit, hash, children) {
return {
type: COLLISION,
edit: edit,
hash: hash,
children: children,
_modify: Collision__modify
};
} | javascript | function Collision(edit, hash, children) {
return {
type: COLLISION,
edit: edit,
hash: hash,
children: children,
_modify: Collision__modify
};
} | [
"function",
"Collision",
"(",
"edit",
",",
"hash",
",",
"children",
")",
"{",
"return",
"{",
"type",
":",
"COLLISION",
",",
"edit",
":",
"edit",
",",
"hash",
":",
"hash",
",",
"children",
":",
"children",
",",
"_modify",
":",
"Collision__modify",
"}",
... | Leaf holding multiple values with the same hash but different keys.
@member edit Edit of the node.
@member hash Hash of key.
@member children Array of collision children node. | [
"Leaf",
"holding",
"multiple",
"values",
"with",
"the",
"same",
"hash",
"but",
"different",
"keys",
"."
] | b8845c7343fdde3966f875d732248fec597cf538 | https://github.com/mattbierner/hamt_plus/blob/b8845c7343fdde3966f875d732248fec597cf538/hamt.js#L205-L213 |
36,088 | mattbierner/hamt_plus | hamt.js | IndexedNode | function IndexedNode(edit, mask, children) {
return {
type: INDEX,
edit: edit,
mask: mask,
children: children,
_modify: IndexedNode__modify
};
} | javascript | function IndexedNode(edit, mask, children) {
return {
type: INDEX,
edit: edit,
mask: mask,
children: children,
_modify: IndexedNode__modify
};
} | [
"function",
"IndexedNode",
"(",
"edit",
",",
"mask",
",",
"children",
")",
"{",
"return",
"{",
"type",
":",
"INDEX",
",",
"edit",
":",
"edit",
",",
"mask",
":",
"mask",
",",
"children",
":",
"children",
",",
"_modify",
":",
"IndexedNode__modify",
"}",
... | Internal node with a sparse set of children.
Uses a bitmap and array to pack children.
@member edit Edit of the node.
@member mask Bitmap that encode the positions of children in the array.
@member children Array of child nodes. | [
"Internal",
"node",
"with",
"a",
"sparse",
"set",
"of",
"children",
"."
] | b8845c7343fdde3966f875d732248fec597cf538 | https://github.com/mattbierner/hamt_plus/blob/b8845c7343fdde3966f875d732248fec597cf538/hamt.js#L224-L232 |
36,089 | mattbierner/hamt_plus | hamt.js | ArrayNode | function ArrayNode(edit, size, children) {
return {
type: ARRAY,
edit: edit,
size: size,
children: children,
_modify: ArrayNode__modify
};
} | javascript | function ArrayNode(edit, size, children) {
return {
type: ARRAY,
edit: edit,
size: size,
children: children,
_modify: ArrayNode__modify
};
} | [
"function",
"ArrayNode",
"(",
"edit",
",",
"size",
",",
"children",
")",
"{",
"return",
"{",
"type",
":",
"ARRAY",
",",
"edit",
":",
"edit",
",",
"size",
":",
"size",
",",
"children",
":",
"children",
",",
"_modify",
":",
"ArrayNode__modify",
"}",
";",... | Internal node with many children.
@member edit Edit of the node.
@member size Number of children.
@member children Array of child nodes. | [
"Internal",
"node",
"with",
"many",
"children",
"."
] | b8845c7343fdde3966f875d732248fec597cf538 | https://github.com/mattbierner/hamt_plus/blob/b8845c7343fdde3966f875d732248fec597cf538/hamt.js#L241-L249 |
36,090 | mattbierner/hamt_plus | hamt.js | isLeaf | function isLeaf(node) {
return node === empty || node.type === LEAF || node.type === COLLISION;
} | javascript | function isLeaf(node) {
return node === empty || node.type === LEAF || node.type === COLLISION;
} | [
"function",
"isLeaf",
"(",
"node",
")",
"{",
"return",
"node",
"===",
"empty",
"||",
"node",
".",
"type",
"===",
"LEAF",
"||",
"node",
".",
"type",
"===",
"COLLISION",
";",
"}"
] | Is `node` a leaf node? | [
"Is",
"node",
"a",
"leaf",
"node?"
] | b8845c7343fdde3966f875d732248fec597cf538 | https://github.com/mattbierner/hamt_plus/blob/b8845c7343fdde3966f875d732248fec597cf538/hamt.js#L254-L256 |
36,091 | mattbierner/hamt_plus | hamt.js | pack | function pack(edit, count, removed, elements) {
var children = new Array(count - 1);
var g = 0;
var bitmap = 0;
for (var i = 0, len = elements.length; i < len; ++i) {
if (i !== removed) {
var elem = elements[i];
if (elem && !isEmptyNode(elem)) {
children[g... | javascript | function pack(edit, count, removed, elements) {
var children = new Array(count - 1);
var g = 0;
var bitmap = 0;
for (var i = 0, len = elements.length; i < len; ++i) {
if (i !== removed) {
var elem = elements[i];
if (elem && !isEmptyNode(elem)) {
children[g... | [
"function",
"pack",
"(",
"edit",
",",
"count",
",",
"removed",
",",
"elements",
")",
"{",
"var",
"children",
"=",
"new",
"Array",
"(",
"count",
"-",
"1",
")",
";",
"var",
"g",
"=",
"0",
";",
"var",
"bitmap",
"=",
"0",
";",
"for",
"(",
"var",
"i... | Collapse an array node into a indexed node.
@param edit Current edit.
@param count Number of elements in new array.
@param removed Index of removed element.
@param elements Array node children before remove. | [
"Collapse",
"an",
"array",
"node",
"into",
"a",
"indexed",
"node",
"."
] | b8845c7343fdde3966f875d732248fec597cf538 | https://github.com/mattbierner/hamt_plus/blob/b8845c7343fdde3966f875d732248fec597cf538/hamt.js#L289-L303 |
36,092 | mattbierner/hamt_plus | hamt.js | mergeLeaves | function mergeLeaves(edit, shift, h1, n1, h2, n2) {
if (h1 === h2) return Collision(edit, h1, [n2, n1]);
var subH1 = hashFragment(shift, h1);
var subH2 = hashFragment(shift, h2);
return IndexedNode(edit, toBitmap(subH1) | toBitmap(subH2), subH1 === subH2 ? [mergeLeaves(edit, shift + SIZE, h1, n1, h2, n... | javascript | function mergeLeaves(edit, shift, h1, n1, h2, n2) {
if (h1 === h2) return Collision(edit, h1, [n2, n1]);
var subH1 = hashFragment(shift, h1);
var subH2 = hashFragment(shift, h2);
return IndexedNode(edit, toBitmap(subH1) | toBitmap(subH2), subH1 === subH2 ? [mergeLeaves(edit, shift + SIZE, h1, n1, h2, n... | [
"function",
"mergeLeaves",
"(",
"edit",
",",
"shift",
",",
"h1",
",",
"n1",
",",
"h2",
",",
"n2",
")",
"{",
"if",
"(",
"h1",
"===",
"h2",
")",
"return",
"Collision",
"(",
"edit",
",",
"h1",
",",
"[",
"n2",
",",
"n1",
"]",
")",
";",
"var",
"su... | Merge two leaf nodes.
@param shift Current shift.
@param h1 Node 1 hash.
@param n1 Node 1.
@param h2 Node 2 hash.
@param n2 Node 2. | [
"Merge",
"two",
"leaf",
"nodes",
"."
] | b8845c7343fdde3966f875d732248fec597cf538 | https://github.com/mattbierner/hamt_plus/blob/b8845c7343fdde3966f875d732248fec597cf538/hamt.js#L314-L320 |
36,093 | mattbierner/hamt_plus | hamt.js | updateCollisionList | function updateCollisionList(mutate, edit, keyEq, h, list, f, k, size) {
var len = list.length;
for (var i = 0; i < len; ++i) {
var child = list[i];
if (keyEq(k, child.key)) {
var value = child.value;
var _newValue = f(value);
if (_newValue === value) return l... | javascript | function updateCollisionList(mutate, edit, keyEq, h, list, f, k, size) {
var len = list.length;
for (var i = 0; i < len; ++i) {
var child = list[i];
if (keyEq(k, child.key)) {
var value = child.value;
var _newValue = f(value);
if (_newValue === value) return l... | [
"function",
"updateCollisionList",
"(",
"mutate",
",",
"edit",
",",
"keyEq",
",",
"h",
",",
"list",
",",
"f",
",",
"k",
",",
"size",
")",
"{",
"var",
"len",
"=",
"list",
".",
"length",
";",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"len"... | Update an entry in a collision list.
@param mutate Should mutation be used?
@param edit Current edit.
@param keyEq Key compare function.
@param hash Hash of collision.
@param list Collision list.
@param f Update function.
@param k Key to update.
@param size Size ref. | [
"Update",
"an",
"entry",
"in",
"a",
"collision",
"list",
"."
] | b8845c7343fdde3966f875d732248fec597cf538 | https://github.com/mattbierner/hamt_plus/blob/b8845c7343fdde3966f875d732248fec597cf538/hamt.js#L334-L355 |
36,094 | mattbierner/hamt_plus | hamt.js | lazyVisitChildren | function lazyVisitChildren(len, children, i, f, k) {
while (i < len) {
var child = children[i++];
if (child && !isEmptyNode(child)) return lazyVisit(child, f, [len, children, i, f, k]);
}
return appk(k);
} | javascript | function lazyVisitChildren(len, children, i, f, k) {
while (i < len) {
var child = children[i++];
if (child && !isEmptyNode(child)) return lazyVisit(child, f, [len, children, i, f, k]);
}
return appk(k);
} | [
"function",
"lazyVisitChildren",
"(",
"len",
",",
"children",
",",
"i",
",",
"f",
",",
"k",
")",
"{",
"while",
"(",
"i",
"<",
"len",
")",
"{",
"var",
"child",
"=",
"children",
"[",
"i",
"++",
"]",
";",
"if",
"(",
"child",
"&&",
"!",
"isEmptyNode"... | Recursively visit all values stored in an array of nodes lazily. | [
"Recursively",
"visit",
"all",
"values",
"stored",
"in",
"an",
"array",
"of",
"nodes",
"lazily",
"."
] | b8845c7343fdde3966f875d732248fec597cf538 | https://github.com/mattbierner/hamt_plus/blob/b8845c7343fdde3966f875d732248fec597cf538/hamt.js#L788-L794 |
36,095 | mattbierner/hamt_plus | hamt.js | lazyVisit | function lazyVisit(node, f, k) {
switch (node.type) {
case LEAF:
return {
value: f(node),
rest: k
};
case COLLISION:
case ARRAY:
case INDEX:
var children = node.children;
return lazyVisitChildren(childre... | javascript | function lazyVisit(node, f, k) {
switch (node.type) {
case LEAF:
return {
value: f(node),
rest: k
};
case COLLISION:
case ARRAY:
case INDEX:
var children = node.children;
return lazyVisitChildren(childre... | [
"function",
"lazyVisit",
"(",
"node",
",",
"f",
",",
"k",
")",
"{",
"switch",
"(",
"node",
".",
"type",
")",
"{",
"case",
"LEAF",
":",
"return",
"{",
"value",
":",
"f",
"(",
"node",
")",
",",
"rest",
":",
"k",
"}",
";",
"case",
"COLLISION",
":"... | Recursively visit all values stored in `node` lazily. | [
"Recursively",
"visit",
"all",
"values",
"stored",
"in",
"node",
"lazily",
"."
] | b8845c7343fdde3966f875d732248fec597cf538 | https://github.com/mattbierner/hamt_plus/blob/b8845c7343fdde3966f875d732248fec597cf538/hamt.js#L799-L816 |
36,096 | keymetrics/trassingue | src/util.js | truncate | function truncate(string, length) {
if (Buffer.byteLength(string, 'utf8') <= length) {
return string;
}
string = string.substr(0, length - 3);
while (Buffer.byteLength(string, 'utf8') > length - 3) {
string = string.substr(0, string.length - 1);
}
return string + '...';
} | javascript | function truncate(string, length) {
if (Buffer.byteLength(string, 'utf8') <= length) {
return string;
}
string = string.substr(0, length - 3);
while (Buffer.byteLength(string, 'utf8') > length - 3) {
string = string.substr(0, string.length - 1);
}
return string + '...';
} | [
"function",
"truncate",
"(",
"string",
",",
"length",
")",
"{",
"if",
"(",
"Buffer",
".",
"byteLength",
"(",
"string",
",",
"'utf8'",
")",
"<=",
"length",
")",
"{",
"return",
"string",
";",
"}",
"string",
"=",
"string",
".",
"substr",
"(",
"0",
",",
... | Truncates the provided `string` to be at most `length` bytes
after utf8 encoding and the appending of '...'.
We produce the result by iterating over input characters to
avoid truncating the string potentially producing partial unicode
characters at the end. | [
"Truncates",
"the",
"provided",
"string",
"to",
"be",
"at",
"most",
"length",
"bytes",
"after",
"utf8",
"encoding",
"and",
"the",
"appending",
"of",
"...",
".",
"We",
"produce",
"the",
"result",
"by",
"iterating",
"over",
"input",
"characters",
"to",
"avoid"... | 1d283858b45e5fb42519dc1f39cffaaade601931 | https://github.com/keymetrics/trassingue/blob/1d283858b45e5fb42519dc1f39cffaaade601931/src/util.js#L30-L39 |
36,097 | keymetrics/trassingue | src/util.js | findModulePath | function findModulePath(request, parent) {
var mainScriptDir = path.dirname(Module._resolveFilename(request, parent));
var resolvedModule = Module._resolveLookupPaths(request, parent);
var paths = resolvedModule[1];
for (var i = 0, PL = paths.length; i < PL; i++) {
if (mainScriptDir.indexOf(paths[i]) === 0)... | javascript | function findModulePath(request, parent) {
var mainScriptDir = path.dirname(Module._resolveFilename(request, parent));
var resolvedModule = Module._resolveLookupPaths(request, parent);
var paths = resolvedModule[1];
for (var i = 0, PL = paths.length; i < PL; i++) {
if (mainScriptDir.indexOf(paths[i]) === 0)... | [
"function",
"findModulePath",
"(",
"request",
",",
"parent",
")",
"{",
"var",
"mainScriptDir",
"=",
"path",
".",
"dirname",
"(",
"Module",
".",
"_resolveFilename",
"(",
"request",
",",
"parent",
")",
")",
";",
"var",
"resolvedModule",
"=",
"Module",
".",
"... | Determines the path at which the requested module will be loaded given
the provided parent module.
@param {string} request The name of the module to be loaded.
@param {object} parent The module into which the requested module will be loaded. | [
"Determines",
"the",
"path",
"at",
"which",
"the",
"requested",
"module",
"will",
"be",
"loaded",
"given",
"the",
"provided",
"parent",
"module",
"."
] | 1d283858b45e5fb42519dc1f39cffaaade601931 | https://github.com/keymetrics/trassingue/blob/1d283858b45e5fb42519dc1f39cffaaade601931/src/util.js#L99-L109 |
36,098 | keymetrics/trassingue | src/util.js | findModuleVersion | function findModuleVersion(modulePath, load) {
if (modulePath) {
var pjson = path.join(modulePath, 'package.json');
if (fs.existsSync(pjson)) {
return load(pjson).version;
}
}
return process.version;
} | javascript | function findModuleVersion(modulePath, load) {
if (modulePath) {
var pjson = path.join(modulePath, 'package.json');
if (fs.existsSync(pjson)) {
return load(pjson).version;
}
}
return process.version;
} | [
"function",
"findModuleVersion",
"(",
"modulePath",
",",
"load",
")",
"{",
"if",
"(",
"modulePath",
")",
"{",
"var",
"pjson",
"=",
"path",
".",
"join",
"(",
"modulePath",
",",
"'package.json'",
")",
";",
"if",
"(",
"fs",
".",
"existsSync",
"(",
"pjson",
... | Determines the version of the module located at `modulePath`.
@param {?string} modulePath The absolute path to the root directory of the
module being loaded. This may be null if we are loading an internal module
such as http. | [
"Determines",
"the",
"version",
"of",
"the",
"module",
"located",
"at",
"modulePath",
"."
] | 1d283858b45e5fb42519dc1f39cffaaade601931 | https://github.com/keymetrics/trassingue/blob/1d283858b45e5fb42519dc1f39cffaaade601931/src/util.js#L118-L126 |
36,099 | oskosk/node-wms-client | index.js | function( queryOptions, callback ) {
var _this = this;
if ( typeof queryOptions === 'function' ) {
callback = queryOptions;
this.capabilities( function( err, capabilities ) {
if ( err ) {
debug( "Error getting layers for server '%s': %j", _this.baseUrl,
err.stack );
return callback( err );... | javascript | function( queryOptions, callback ) {
var _this = this;
if ( typeof queryOptions === 'function' ) {
callback = queryOptions;
this.capabilities( function( err, capabilities ) {
if ( err ) {
debug( "Error getting layers for server '%s': %j", _this.baseUrl,
err.stack );
return callback( err );... | [
"function",
"(",
"queryOptions",
",",
"callback",
")",
"{",
"var",
"_this",
"=",
"this",
";",
"if",
"(",
"typeof",
"queryOptions",
"===",
"'function'",
")",
"{",
"callback",
"=",
"queryOptions",
";",
"this",
".",
"capabilities",
"(",
"function",
"(",
"err"... | Gets the WMS service layers reported in the capabilities as an array
@param {Object} [Optional] queryOptions. Options passed as GET parameters
@param {Function} callback.
- {Error} null if nothing bad happened
- {Array} WMS layers as an array Plain Objects | [
"Gets",
"the",
"WMS",
"service",
"layers",
"reported",
"in",
"the",
"capabilities",
"as",
"an",
"array"
] | 86aaa8ed7eedbed7fb33c72a8607387a2b130933 | https://github.com/oskosk/node-wms-client/blob/86aaa8ed7eedbed7fb33c72a8607387a2b130933/index.js#L82-L108 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.