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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
35,900 | KTH/kth-node-cortina-block | index.js | _setRedisItem | function _setRedisItem (config, blocks) {
let key = _buildRedisKey(config.redisKey, config.language)
return config.redis.hmsetAsync(key, blocks)
.then(function () {
return config.redis.expireAsync(key, config.redisExpire)
})
.then(function () {
return blocks
})
} | javascript | function _setRedisItem (config, blocks) {
let key = _buildRedisKey(config.redisKey, config.language)
return config.redis.hmsetAsync(key, blocks)
.then(function () {
return config.redis.expireAsync(key, config.redisExpire)
})
.then(function () {
return blocks
})
} | [
"function",
"_setRedisItem",
"(",
"config",
",",
"blocks",
")",
"{",
"let",
"key",
"=",
"_buildRedisKey",
"(",
"config",
".",
"redisKey",
",",
"config",
".",
"language",
")",
"return",
"config",
".",
"redis",
".",
"hmsetAsync",
"(",
"key",
",",
"blocks",
... | Wrap Redis set call in a Promise.
@param config
@param blocks
@returns {Promise}
@private | [
"Wrap",
"Redis",
"set",
"call",
"in",
"a",
"Promise",
"."
] | db07ce1b6e3ffdbb565be312e91e2244aad20042 | https://github.com/KTH/kth-node-cortina-block/blob/db07ce1b6e3ffdbb565be312e91e2244aad20042/index.js#L298-L307 |
35,901 | KTH/kth-node-cortina-block | index.js | _getEnvUrl | function _getEnvUrl (currentEnv, config) {
if (currentEnv && config) {
if (currentEnv === 'prod') {
return config.urls.prod
} else if (currentEnv === 'ref') {
return config.urls.ref
} else {
return config.urls.dev
}
}
} | javascript | function _getEnvUrl (currentEnv, config) {
if (currentEnv && config) {
if (currentEnv === 'prod') {
return config.urls.prod
} else if (currentEnv === 'ref') {
return config.urls.ref
} else {
return config.urls.dev
}
}
} | [
"function",
"_getEnvUrl",
"(",
"currentEnv",
",",
"config",
")",
"{",
"if",
"(",
"currentEnv",
"&&",
"config",
")",
"{",
"if",
"(",
"currentEnv",
"===",
"'prod'",
")",
"{",
"return",
"config",
".",
"urls",
".",
"prod",
"}",
"else",
"if",
"(",
"currentE... | Get the url for the current environmen.
@param {*} currentEnv current environment.
@param {*} config the given config. | [
"Get",
"the",
"url",
"for",
"the",
"current",
"environmen",
"."
] | db07ce1b6e3ffdbb565be312e91e2244aad20042 | https://github.com/KTH/kth-node-cortina-block/blob/db07ce1b6e3ffdbb565be312e91e2244aad20042/index.js#L507-L517 |
35,902 | craterdog-bali/js-bali-component-framework | src/elements/Reserved.js | Reserved | function Reserved(value, parameters) {
abstractions.Element.call(this, utilities.types.RESERVED, parameters);
if (!value || !/^[a-zA-Z][0-9a-zA-Z]*(-[0-9]+)?$/g.test(value)) {
throw new utilities.Exception({
$module: '/bali/elements/Reserved',
$procedure: '$Reserved',
... | javascript | function Reserved(value, parameters) {
abstractions.Element.call(this, utilities.types.RESERVED, parameters);
if (!value || !/^[a-zA-Z][0-9a-zA-Z]*(-[0-9]+)?$/g.test(value)) {
throw new utilities.Exception({
$module: '/bali/elements/Reserved',
$procedure: '$Reserved',
... | [
"function",
"Reserved",
"(",
"value",
",",
"parameters",
")",
"{",
"abstractions",
".",
"Element",
".",
"call",
"(",
"this",
",",
"utilities",
".",
"types",
".",
"RESERVED",
",",
"parameters",
")",
";",
"if",
"(",
"!",
"value",
"||",
"!",
"/",
"^[a-zA-... | PUBLIC CONSTRUCTOR
This constructor creates a new reserved identifier using the specified value.
@param {String} value The value of the reserved identifier.
@param {Parameters} parameters Optional parameters used to parameterize this element.
@returns {Reserved} The new reserved identifier. | [
"PUBLIC",
"CONSTRUCTOR",
"This",
"constructor",
"creates",
"a",
"new",
"reserved",
"identifier",
"using",
"the",
"specified",
"value",
"."
] | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/elements/Reserved.js#L30-L46 |
35,903 | squiggle-lang/squiggle-lang | src/scope.js | Scope | function Scope(parent) {
var map = Object.create(null);
var api = {};
api.markAsUsed = function(k) {
if (typeof k !== "string") {
throw new Error("Scope keys must be strings: " + k);
}
if (api.hasOwnVar(k)) {
map[k].used = true;
return api;
}
if (parent) {
return parent... | javascript | function Scope(parent) {
var map = Object.create(null);
var api = {};
api.markAsUsed = function(k) {
if (typeof k !== "string") {
throw new Error("Scope keys must be strings: " + k);
}
if (api.hasOwnVar(k)) {
map[k].used = true;
return api;
}
if (parent) {
return parent... | [
"function",
"Scope",
"(",
"parent",
")",
"{",
"var",
"map",
"=",
"Object",
".",
"create",
"(",
"null",
")",
";",
"var",
"api",
"=",
"{",
"}",
";",
"api",
".",
"markAsUsed",
"=",
"function",
"(",
"k",
")",
"{",
"if",
"(",
"typeof",
"k",
"!==",
"... | Scope is essentially a class for managing variable scopes. It allows nesting. Nested Scopes are used to track nested scopes. It's like JavaScript's prototypal inheritance, but easier to follow what's happening. | [
"Scope",
"is",
"essentially",
"a",
"class",
"for",
"managing",
"variable",
"scopes",
".",
"It",
"allows",
"nesting",
".",
"Nested",
"Scopes",
"are",
"used",
"to",
"track",
"nested",
"scopes",
".",
"It",
"s",
"like",
"JavaScript",
"s",
"prototypal",
"inherita... | 74a2ac34fbc54443a69c31ae256db2d8db5448b0 | https://github.com/squiggle-lang/squiggle-lang/blob/74a2ac34fbc54443a69c31ae256db2d8db5448b0/src/scope.js#L12-L96 |
35,904 | bq/corbel-js | src/ec/paymentMethodsBuilder.js | function (params, userId) {
console.log('ecInterface.paymentmethod.add');
return this.request({
url: this._buildUri(this.uri, null, null, userId),
method: corbel.request.method.POST,
data: params
})
.then(function (res) {
return corbel.Services.getLoc... | javascript | function (params, userId) {
console.log('ecInterface.paymentmethod.add');
return this.request({
url: this._buildUri(this.uri, null, null, userId),
method: corbel.request.method.POST,
data: params
})
.then(function (res) {
return corbel.Services.getLoc... | [
"function",
"(",
"params",
",",
"userId",
")",
"{",
"console",
".",
"log",
"(",
"'ecInterface.paymentmethod.add'",
")",
";",
"return",
"this",
".",
"request",
"(",
"{",
"url",
":",
"this",
".",
"_buildUri",
"(",
"this",
".",
"uri",
",",
"null",
",",
"n... | Add a new payment method for the logged user.
@method
@memberOf corbel.Ec.PaymentMethodBuilder
@param {Object} params The params filter
@param {String} params.data The card data encrypted
(@see https://github.com/adyenpayments/client-side-encryption)
@param {String} params.name U... | [
"Add",
"a",
"new",
"payment",
"method",
"for",
"the",
"logged",
"user",
"."
] | 00074882676b592d2ac16868279c58b0c4faf1e2 | https://github.com/bq/corbel-js/blob/00074882676b592d2ac16868279c58b0c4faf1e2/src/ec/paymentMethodsBuilder.js#L61-L72 | |
35,905 | bq/corbel-js | src/ec/paymentMethodsBuilder.js | function (params) {
console.log('ecInterface.paymentmethod.update');
return this.request({
url: this._buildUri(this.uri),
method: corbel.request.method.PUT,
data: params
})
.then(function (res) {
return corbel.Services.getLocationId(res);
});
... | javascript | function (params) {
console.log('ecInterface.paymentmethod.update');
return this.request({
url: this._buildUri(this.uri),
method: corbel.request.method.PUT,
data: params
})
.then(function (res) {
return corbel.Services.getLocationId(res);
});
... | [
"function",
"(",
"params",
")",
"{",
"console",
".",
"log",
"(",
"'ecInterface.paymentmethod.update'",
")",
";",
"return",
"this",
".",
"request",
"(",
"{",
"url",
":",
"this",
".",
"_buildUri",
"(",
"this",
".",
"uri",
")",
",",
"method",
":",
"corbel",... | Updates a current payment method for the logged user.
@method
@memberOf corbel.Ec.PaymentMethodBuilder
@param {Object} params The params filter
@param {String} params.data The card data encrypted
(@see https://github.com/adyenpayments/client-side-encryption)
@param {String} params.name ... | [
"Updates",
"a",
"current",
"payment",
"method",
"for",
"the",
"logged",
"user",
"."
] | 00074882676b592d2ac16868279c58b0c4faf1e2 | https://github.com/bq/corbel-js/blob/00074882676b592d2ac16868279c58b0c4faf1e2/src/ec/paymentMethodsBuilder.js#L88-L99 | |
35,906 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/dom/selector.js | matchImmediate | function matchImmediate(el, match) {
var matched = 1, startEl = el, relativeOp, startMatch = match;
do {
matched &= singleMatch(el, match);
if (matched) {
// advance
match = match && match.prev;
if (!match) {
ret... | javascript | function matchImmediate(el, match) {
var matched = 1, startEl = el, relativeOp, startMatch = match;
do {
matched &= singleMatch(el, match);
if (matched) {
// advance
match = match && match.prev;
if (!match) {
ret... | [
"function",
"matchImmediate",
"(",
"el",
",",
"match",
")",
"{",
"var",
"matched",
"=",
"1",
",",
"startEl",
"=",
"el",
",",
"relativeOp",
",",
"startMatch",
"=",
"match",
";",
"do",
"{",
"matched",
"&=",
"singleMatch",
"(",
"el",
",",
"match",
")",
... | match by adjacent immediate single selector match match by adjacent immediate single selector match | [
"match",
"by",
"adjacent",
"immediate",
"single",
"selector",
"match",
"match",
"by",
"adjacent",
"immediate",
"single",
"selector",
"match"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/dom/selector.js#L376-L417 |
35,907 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/dom/selector.js | findFixedMatchFromHead | function findFixedMatchFromHead(el, head) {
var relativeOp, cur = head;
do {
if (!singleMatch(el, cur)) {
return null;
}
cur = cur.prev;
if (!cur) {
return true;
}
relativeOp = relativeExpr[cur.nextCo... | javascript | function findFixedMatchFromHead(el, head) {
var relativeOp, cur = head;
do {
if (!singleMatch(el, cur)) {
return null;
}
cur = cur.prev;
if (!cur) {
return true;
}
relativeOp = relativeExpr[cur.nextCo... | [
"function",
"findFixedMatchFromHead",
"(",
"el",
",",
"head",
")",
"{",
"var",
"relativeOp",
",",
"cur",
"=",
"head",
";",
"do",
"{",
"if",
"(",
"!",
"singleMatch",
"(",
"el",
",",
"cur",
")",
")",
"{",
"return",
"null",
";",
"}",
"cur",
"=",
"cur"... | find fixed part, fixed with seeds find fixed part, fixed with seeds | [
"find",
"fixed",
"part",
"fixed",
"with",
"seeds",
"find",
"fixed",
"part",
"fixed",
"with",
"seeds"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/dom/selector.js#L419-L439 |
35,908 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/dom/selector.js | matchSubInternal | function matchSubInternal(el, match) {
var matchImmediateRet = matchImmediate(el, match);
if (matchImmediateRet === true) {
return true;
} else {
el = matchImmediateRet.el;
match = matchImmediateRet.match;
while (el) {
if (matchSub(... | javascript | function matchSubInternal(el, match) {
var matchImmediateRet = matchImmediate(el, match);
if (matchImmediateRet === true) {
return true;
} else {
el = matchImmediateRet.el;
match = matchImmediateRet.match;
while (el) {
if (matchSub(... | [
"function",
"matchSubInternal",
"(",
"el",
",",
"match",
")",
"{",
"var",
"matchImmediateRet",
"=",
"matchImmediate",
"(",
"el",
",",
"match",
")",
";",
"if",
"(",
"matchImmediateRet",
"===",
"true",
")",
"{",
"return",
"true",
";",
"}",
"else",
"{",
"el... | recursive match by sub selector string from right to left grouped by immediate selectors recursive match by sub selector string from right to left grouped by immediate selectors | [
"recursive",
"match",
"by",
"sub",
"selector",
"string",
"from",
"right",
"to",
"left",
"grouped",
"by",
"immediate",
"selectors",
"recursive",
"match",
"by",
"sub",
"selector",
"string",
"from",
"right",
"to",
"left",
"grouped",
"by",
"immediate",
"selectors"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/dom/selector.js#L465-L480 |
35,909 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/feature-debug.js | getVendorInfo | function getVendorInfo(name) {
if (name.indexOf('-') !== -1) {
name = name.replace(RE_DASH, upperCase);
}
if (name in vendorInfos) {
return vendorInfos[name];
} // if already prefixed or need not to prefix
// if already prefixed or need not to prefix
... | javascript | function getVendorInfo(name) {
if (name.indexOf('-') !== -1) {
name = name.replace(RE_DASH, upperCase);
}
if (name in vendorInfos) {
return vendorInfos[name];
} // if already prefixed or need not to prefix
// if already prefixed or need not to prefix
... | [
"function",
"getVendorInfo",
"(",
"name",
")",
"{",
"if",
"(",
"name",
".",
"indexOf",
"(",
"'-'",
")",
"!==",
"-",
"1",
")",
"{",
"name",
"=",
"name",
".",
"replace",
"(",
"RE_DASH",
",",
"upperCase",
")",
";",
"}",
"if",
"(",
"name",
"in",
"ven... | return prefixed css prefix name return prefixed css prefix name | [
"return",
"prefixed",
"css",
"prefix",
"name",
"return",
"prefixed",
"css",
"prefix",
"name"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/feature-debug.js#L46-L74 |
35,910 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/feature-debug.js | function () {
if (isTransform3dSupported !== undefined) {
return isTransform3dSupported;
}
if (!documentElement || !getVendorInfo('transform')) {
isTransform3dSupported = false;
} else {
// https://gist.github.com/lorenzopol... | javascript | function () {
if (isTransform3dSupported !== undefined) {
return isTransform3dSupported;
}
if (!documentElement || !getVendorInfo('transform')) {
isTransform3dSupported = false;
} else {
// https://gist.github.com/lorenzopol... | [
"function",
"(",
")",
"{",
"if",
"(",
"isTransform3dSupported",
"!==",
"undefined",
")",
"{",
"return",
"isTransform3dSupported",
";",
"}",
"if",
"(",
"!",
"documentElement",
"||",
"!",
"getVendorInfo",
"(",
"'transform'",
")",
")",
"{",
"isTransform3dSupported"... | whether support css transform 3d
@returns {boolean} | [
"whether",
"support",
"css",
"transform",
"3d"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/feature-debug.js#L138-L163 | |
35,911 | voxpelli/node-jekyll-utils | lib/url.js | JekyllUrl | function JekyllUrl (options) {
options = options || {};
this.template = options.template;
this.placeholders = options.placeholders;
this.permalink = options.permalink;
if (!this.template) {
throw new Error('One of template or permalink must be supplied.');
}
} | javascript | function JekyllUrl (options) {
options = options || {};
this.template = options.template;
this.placeholders = options.placeholders;
this.permalink = options.permalink;
if (!this.template) {
throw new Error('One of template or permalink must be supplied.');
}
} | [
"function",
"JekyllUrl",
"(",
"options",
")",
"{",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"this",
".",
"template",
"=",
"options",
".",
"template",
";",
"this",
".",
"placeholders",
"=",
"options",
".",
"placeholders",
";",
"this",
".",
"permali... | Methods that generate a URL for a resource such as a Post or a Page.
@example
new JekyllUrl({
template: '/:categories/:title.html',
placeholders: {':categories': 'ruby', ':title' => 'something'}
}).toString();
@class JekyllUrl
@param {object} options - One of :permalink or :template must be supplied.
@param {string} ... | [
"Methods",
"that",
"generate",
"a",
"URL",
"for",
"a",
"resource",
"such",
"as",
"a",
"Post",
"or",
"a",
"Page",
"."
] | 785ba8934bdd001a0c041ae8c77b83ab70b1f442 | https://github.com/voxpelli/node-jekyll-utils/blob/785ba8934bdd001a0c041ae8c77b83ab70b1f442/lib/url.js#L76-L86 |
35,912 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/tabs-debug.js | function (item, index) {
var self = this, bar = self.get('bar'), selectedTab, tabItem, panelItem, barChildren = bar.get('children'), body = self.get('body');
if (typeof index === 'undefined') {
index = barChildren.length;
}
tabItem = fr... | javascript | function (item, index) {
var self = this, bar = self.get('bar'), selectedTab, tabItem, panelItem, barChildren = bar.get('children'), body = self.get('body');
if (typeof index === 'undefined') {
index = barChildren.length;
}
tabItem = fr... | [
"function",
"(",
"item",
",",
"index",
")",
"{",
"var",
"self",
"=",
"this",
",",
"bar",
"=",
"self",
".",
"get",
"(",
"'bar'",
")",
",",
"selectedTab",
",",
"tabItem",
",",
"panelItem",
",",
"barChildren",
"=",
"bar",
".",
"get",
"(",
"'children'",
... | fired when selected tab is changed
@event afterSelectedTabChange
@member KISSY.Tabs
@param {KISSY.Event.CustomEvent.Object} e
@param {KISSY.Tabs.Tab} e.newVal selected tab
fired before selected tab is changed
@event beforeSelectedTabChange
@member KISSY.Tabs
@param {KISSY.Event.CustomEvent.Object} e
@param {KISSY.Tab... | [
"fired",
"when",
"selected",
"tab",
"is",
"changed"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/tabs-debug.js#L175-L190 | |
35,913 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/tabs-debug.js | function (index, destroy) {
var self = this, bar = /**
@ignore
@type KISSY.Component.Control
*/
self.get('bar'), barCs = bar.get('children'), tab = bar.getChildAt(index), body = /**
@ignore
@type KISSY.Component.Control... | javascript | function (index, destroy) {
var self = this, bar = /**
@ignore
@type KISSY.Component.Control
*/
self.get('bar'), barCs = bar.get('children'), tab = bar.getChildAt(index), body = /**
@ignore
@type KISSY.Component.Control... | [
"function",
"(",
"index",
",",
"destroy",
")",
"{",
"var",
"self",
"=",
"this",
",",
"bar",
"=",
"/**\n @ignore\n @type KISSY.Component.Control\n */",
"self",
".",
"get",
"(",
"'bar'",
")",
",",
"barCs",
"=",
"bar",
".",
"get",
... | remove specified tab from current tabs
@param {Number} index
@param {Boolean} destroy whether destroy specified tab and panel
@chainable | [
"remove",
"specified",
"tab",
"from",
"current",
"tabs"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/tabs-debug.js#L197-L219 | |
35,914 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/tabs-debug.js | function (tab, destroy) {
var index = util.indexOf(tab, this.get('bar').get('children'));
return this.removeItemAt(index, destroy);
} | javascript | function (tab, destroy) {
var index = util.indexOf(tab, this.get('bar').get('children'));
return this.removeItemAt(index, destroy);
} | [
"function",
"(",
"tab",
",",
"destroy",
")",
"{",
"var",
"index",
"=",
"util",
".",
"indexOf",
"(",
"tab",
",",
"this",
".",
"get",
"(",
"'bar'",
")",
".",
"get",
"(",
"'children'",
")",
")",
";",
"return",
"this",
".",
"removeItemAt",
"(",
"index"... | remove item by specified tab
@param {KISSY.Tabs.Tab} tab
@param {Boolean} destroy whether destroy specified tab and panel
@chainable | [
"remove",
"item",
"by",
"specified",
"tab"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/tabs-debug.js#L226-L229 | |
35,915 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/tabs-debug.js | function (panel, destroy) {
var index = util.indexOf(panel, this.get('body').get('children'));
return this.removeItemAt(index, destroy);
} | javascript | function (panel, destroy) {
var index = util.indexOf(panel, this.get('body').get('children'));
return this.removeItemAt(index, destroy);
} | [
"function",
"(",
"panel",
",",
"destroy",
")",
"{",
"var",
"index",
"=",
"util",
".",
"indexOf",
"(",
"panel",
",",
"this",
".",
"get",
"(",
"'body'",
")",
".",
"get",
"(",
"'children'",
")",
")",
";",
"return",
"this",
".",
"removeItemAt",
"(",
"i... | remove item by specified panel
@param {KISSY.Tabs.Panel} panel
@param {Boolean} destroy whether destroy specified tab and panel
@chainable | [
"remove",
"item",
"by",
"specified",
"panel"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/tabs-debug.js#L236-L239 | |
35,916 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/tabs-debug.js | function () {
var self = this, bar = self.get('bar'), child = null;
util.each(bar.get('children'), function (c) {
if (c.get('selected')) {
child = c;
return false;
}
return undefin... | javascript | function () {
var self = this, bar = self.get('bar'), child = null;
util.each(bar.get('children'), function (c) {
if (c.get('selected')) {
child = c;
return false;
}
return undefin... | [
"function",
"(",
")",
"{",
"var",
"self",
"=",
"this",
",",
"bar",
"=",
"self",
".",
"get",
"(",
"'bar'",
")",
",",
"child",
"=",
"null",
";",
"util",
".",
"each",
"(",
"bar",
".",
"get",
"(",
"'children'",
")",
",",
"function",
"(",
"c",
")",
... | get selected tab instance
@return {KISSY.Tabs.Tab} | [
"get",
"selected",
"tab",
"instance"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/tabs-debug.js#L244-L254 | |
35,917 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/tabs-debug.js | function (tab) {
var self = this, bar = self.get('bar'), body = self.get('body');
bar.set('selectedTab', tab);
body.set('selectedPanelIndex', util.indexOf(tab, bar.get('children')));
return this;
} | javascript | function (tab) {
var self = this, bar = self.get('bar'), body = self.get('body');
bar.set('selectedTab', tab);
body.set('selectedPanelIndex', util.indexOf(tab, bar.get('children')));
return this;
} | [
"function",
"(",
"tab",
")",
"{",
"var",
"self",
"=",
"this",
",",
"bar",
"=",
"self",
".",
"get",
"(",
"'bar'",
")",
",",
"body",
"=",
"self",
".",
"get",
"(",
"'body'",
")",
";",
"bar",
".",
"set",
"(",
"'selectedTab'",
",",
"tab",
")",
";",
... | set tab as selected
@param {KISSY.Tabs.Tab} tab
@chainable | [
"set",
"tab",
"as",
"selected"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/tabs-debug.js#L301-L306 | |
35,918 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/tabs-debug.js | function (panel) {
var self = this, bar = self.get('bar'), body = self.get('body'), selectedPanelIndex = util.indexOf(panel, body.get('children'));
body.set('selectedPanelIndex', selectedPanelIndex);
bar.set('selectedTab', self.getTabAt(selectedPanelIndex));
... | javascript | function (panel) {
var self = this, bar = self.get('bar'), body = self.get('body'), selectedPanelIndex = util.indexOf(panel, body.get('children'));
body.set('selectedPanelIndex', selectedPanelIndex);
bar.set('selectedTab', self.getTabAt(selectedPanelIndex));
... | [
"function",
"(",
"panel",
")",
"{",
"var",
"self",
"=",
"this",
",",
"bar",
"=",
"self",
".",
"get",
"(",
"'bar'",
")",
",",
"body",
"=",
"self",
".",
"get",
"(",
"'body'",
")",
",",
"selectedPanelIndex",
"=",
"util",
".",
"indexOf",
"(",
"panel",
... | set panel as selected
@param {KISSY.Tabs.Panel} panel
@chainable | [
"set",
"panel",
"as",
"selected"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/tabs-debug.js#L312-L317 | |
35,919 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js | function (type, create) {
var self = this, customEvent, customEventObservables = self.getCustomEvents();
customEvent = customEventObservables && customEventObservables[type];
if (!customEvent && create) {
customEvent = customEventObservables[type] = new CustomEventObs... | javascript | function (type, create) {
var self = this, customEvent, customEventObservables = self.getCustomEvents();
customEvent = customEventObservables && customEventObservables[type];
if (!customEvent && create) {
customEvent = customEventObservables[type] = new CustomEventObs... | [
"function",
"(",
"type",
",",
"create",
")",
"{",
"var",
"self",
"=",
"this",
",",
"customEvent",
",",
"customEventObservables",
"=",
"self",
".",
"getCustomEvents",
"(",
")",
";",
"customEvent",
"=",
"customEventObservables",
"&&",
"customEventObservables",
"["... | Get custom event for specified event
@private
@param {String} type event type
@param {Boolean} [create] whether create custom event on fly
@return {KISSY.Event.CustomEvent.CustomEventObservable} | [
"Get",
"custom",
"event",
"for",
"specified",
"event"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js#L106-L116 | |
35,920 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js | function (type, cfg) {
var customEventObservable, self = this;
splitAndRun(type, function (t) {
customEventObservable = self.getCustomEventObservable(t, true);
util.mix(customEventObservable, cfg);
});
return self;
} | javascript | function (type, cfg) {
var customEventObservable, self = this;
splitAndRun(type, function (t) {
customEventObservable = self.getCustomEventObservable(t, true);
util.mix(customEventObservable, cfg);
});
return self;
} | [
"function",
"(",
"type",
",",
"cfg",
")",
"{",
"var",
"customEventObservable",
",",
"self",
"=",
"this",
";",
"splitAndRun",
"(",
"type",
",",
"function",
"(",
"t",
")",
"{",
"customEventObservable",
"=",
"self",
".",
"getCustomEventObservable",
"(",
"t",
... | Creates a new custom event of the specified type
@method publish
@param {String} type The type of the event
@param {Object} cfg Config params
@param {Boolean} [cfg.bubbles=true] whether or not this event bubbles
@param {Function} [cfg.defaultFn] this event's default action
@chainable | [
"Creates",
"a",
"new",
"custom",
"event",
"of",
"the",
"specified",
"type"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js#L175-L182 | |
35,921 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js | function (anotherTarget) {
var self = this, targets = self.getTargets();
if (!util.inArray(anotherTarget, targets)) {
targets.push(anotherTarget);
}
return self;
} | javascript | function (anotherTarget) {
var self = this, targets = self.getTargets();
if (!util.inArray(anotherTarget, targets)) {
targets.push(anotherTarget);
}
return self;
} | [
"function",
"(",
"anotherTarget",
")",
"{",
"var",
"self",
"=",
"this",
",",
"targets",
"=",
"self",
".",
"getTargets",
"(",
")",
";",
"if",
"(",
"!",
"util",
".",
"inArray",
"(",
"anotherTarget",
",",
"targets",
")",
")",
"{",
"targets",
".",
"push"... | Registers another EventTarget as a bubble target.
@method addTarget
@param {KISSY.Event.CustomEvent.Target} anotherTarget Another EventTarget instance to add
@chainable | [
"Registers",
"another",
"EventTarget",
"as",
"a",
"bubble",
"target",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js#L189-L195 | |
35,922 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js | function (anotherTarget) {
var self = this, targets = self.getTargets(), index = util.indexOf(anotherTarget, targets);
if (index !== -1) {
targets.splice(index, 1);
}
return self;
} | javascript | function (anotherTarget) {
var self = this, targets = self.getTargets(), index = util.indexOf(anotherTarget, targets);
if (index !== -1) {
targets.splice(index, 1);
}
return self;
} | [
"function",
"(",
"anotherTarget",
")",
"{",
"var",
"self",
"=",
"this",
",",
"targets",
"=",
"self",
".",
"getTargets",
"(",
")",
",",
"index",
"=",
"util",
".",
"indexOf",
"(",
"anotherTarget",
",",
"targets",
")",
";",
"if",
"(",
"index",
"!==",
"-... | Removes a bubble target
@method removeTarget
@param {KISSY.Event.CustomEvent.Target} anotherTarget Another EventTarget instance to remove
@chainable | [
"Removes",
"a",
"bubble",
"target"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js#L202-L208 | |
35,923 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js | function (type, fn, context) {
var self = this;
Utils.batchForType(function (type, fn, context) {
var cfg = Utils.normalizeParam(type, fn, context), customEvent;
type = cfg.type;
customEvent = self.getCustomEventObservable(type, true);
... | javascript | function (type, fn, context) {
var self = this;
Utils.batchForType(function (type, fn, context) {
var cfg = Utils.normalizeParam(type, fn, context), customEvent;
type = cfg.type;
customEvent = self.getCustomEventObservable(type, true);
... | [
"function",
"(",
"type",
",",
"fn",
",",
"context",
")",
"{",
"var",
"self",
"=",
"this",
";",
"Utils",
".",
"batchForType",
"(",
"function",
"(",
"type",
",",
"fn",
",",
"context",
")",
"{",
"var",
"cfg",
"=",
"Utils",
".",
"normalizeParam",
"(",
... | Subscribe a callback function to a custom event fired by this object or from an object that bubbles its events to this object.
@method on
@param {String} type The name of the event
@param {Function} fn The callback to execute in response to the event
@param {Object} [context] this object in callback
@chainable | [
"Subscribe",
"a",
"callback",
"function",
"to",
"a",
"custom",
"event",
"fired",
"by",
"this",
"object",
"or",
"from",
"an",
"object",
"that",
"bubbles",
"its",
"events",
"to",
"this",
"object",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js#L228-L239 | |
35,924 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js | function (type, fn, context) {
var self = this;
Utils.batchForType(function (type, fn, context) {
var cfg = Utils.normalizeParam(type, fn, context), customEvents, customEvent;
type = cfg.type;
if (type) {
customEvent = self.getC... | javascript | function (type, fn, context) {
var self = this;
Utils.batchForType(function (type, fn, context) {
var cfg = Utils.normalizeParam(type, fn, context), customEvents, customEvent;
type = cfg.type;
if (type) {
customEvent = self.getC... | [
"function",
"(",
"type",
",",
"fn",
",",
"context",
")",
"{",
"var",
"self",
"=",
"this",
";",
"Utils",
".",
"batchForType",
"(",
"function",
"(",
"type",
",",
"fn",
",",
"context",
")",
"{",
"var",
"cfg",
"=",
"Utils",
".",
"normalizeParam",
"(",
... | chain
Detach one or more listeners from the specified event
@method detach
@param {String} type The name of the event
@param {Function} [fn] The subscribed function to un-subscribe. if not supplied, all observers will be removed.
@param {Object} [context] The custom object passed to subscribe.
@chainable | [
"chain",
"Detach",
"one",
"or",
"more",
"listeners",
"from",
"the",
"specified",
"event"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js#L249-L267 | |
35,925 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js | CustomEventObservable | function CustomEventObservable() {
var self = this;
CustomEventObservable.superclass.constructor.apply(self, arguments);
self.defaultFn = null;
self.defaultTargetOnly = false; /**
* whether this event can bubble.
* Defaults to: true
* @cfg {Boolean} bubbles
*/
... | javascript | function CustomEventObservable() {
var self = this;
CustomEventObservable.superclass.constructor.apply(self, arguments);
self.defaultFn = null;
self.defaultTargetOnly = false; /**
* whether this event can bubble.
* Defaults to: true
* @cfg {Boolean} bubbles
*/
... | [
"function",
"CustomEventObservable",
"(",
")",
"{",
"var",
"self",
"=",
"this",
";",
"CustomEventObservable",
".",
"superclass",
".",
"constructor",
".",
"apply",
"(",
"self",
",",
"arguments",
")",
";",
"self",
".",
"defaultFn",
"=",
"null",
";",
"self",
... | custom event for registering and un-registering observer for specified event on normal object.
@class KISSY.Event.CustomEvent.CustomEventObservable
@extends KISSY.Event.Observable
@private
custom event for registering and un-registering observer for specified event on normal object.
@class KISSY.Event.CustomEvent.Cus... | [
"custom",
"event",
"for",
"registering",
"and",
"un",
"-",
"registering",
"observer",
"for",
"specified",
"event",
"on",
"normal",
"object",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js#L305-L323 |
35,926 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js | function (eventData) {
eventData = eventData || {};
var self = this, bubbles = self.bubbles, currentTarget = self.currentTarget, parents, parentsLen, type = self.type, defaultFn = self.defaultFn, i, customEventObject = eventData, gRet, ret;
eventData.type = type;
if (!cus... | javascript | function (eventData) {
eventData = eventData || {};
var self = this, bubbles = self.bubbles, currentTarget = self.currentTarget, parents, parentsLen, type = self.type, defaultFn = self.defaultFn, i, customEventObject = eventData, gRet, ret;
eventData.type = type;
if (!cus... | [
"function",
"(",
"eventData",
")",
"{",
"eventData",
"=",
"eventData",
"||",
"{",
"}",
";",
"var",
"self",
"=",
"this",
",",
"bubbles",
"=",
"self",
".",
"bubbles",
",",
"currentTarget",
"=",
"self",
".",
"currentTarget",
",",
"parents",
",",
"parentsLen... | notify current custom event 's observers and then bubble up if this event can bubble.
@param {KISSY.Event.CustomEvent.Object} eventData
@return {*} return false if one of custom event 's observers (include bubbled) else
return last value of custom event 's observers (include bubbled) 's return value. | [
"notify",
"current",
"custom",
"event",
"s",
"observers",
"and",
"then",
"bubble",
"up",
"if",
"this",
"event",
"can",
"bubble",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js#L347-L386 | |
35,927 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js | function (event) {
// duplicate,in case detach itself in one observer
var observers = [].concat(this.observers), ret, gRet, len = observers.length, i;
for (i = 0; i < len && !event.isImmediatePropagationStopped(); i++) {
ret = observers[i].notify(event, this);
... | javascript | function (event) {
// duplicate,in case detach itself in one observer
var observers = [].concat(this.observers), ret, gRet, len = observers.length, i;
for (i = 0; i < len && !event.isImmediatePropagationStopped(); i++) {
ret = observers[i].notify(event, this);
... | [
"function",
"(",
"event",
")",
"{",
"// duplicate,in case detach itself in one observer",
"var",
"observers",
"=",
"[",
"]",
".",
"concat",
"(",
"this",
".",
"observers",
")",
",",
"ret",
",",
"gRet",
",",
"len",
"=",
"observers",
".",
"length",
",",
"i",
... | notify current event 's observers
@param {KISSY.Event.CustomEvent.Object} event
@return {*} return false if one of custom event 's observers else
return last value of custom event 's observers 's return value. | [
"notify",
"current",
"event",
"s",
"observers"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js#L393-L403 | |
35,928 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js | function (cfg) {
var groupsRe, self = this, fn = cfg.fn, context = cfg.context, currentTarget = self.currentTarget, observers = self.observers, groups = cfg.groups;
if (!observers.length) {
return;
}
if (groups) {
groupsRe = Utils.getGroups... | javascript | function (cfg) {
var groupsRe, self = this, fn = cfg.fn, context = cfg.context, currentTarget = self.currentTarget, observers = self.observers, groups = cfg.groups;
if (!observers.length) {
return;
}
if (groups) {
groupsRe = Utils.getGroups... | [
"function",
"(",
"cfg",
")",
"{",
"var",
"groupsRe",
",",
"self",
"=",
"this",
",",
"fn",
"=",
"cfg",
".",
"fn",
",",
"context",
"=",
"cfg",
".",
"context",
",",
"currentTarget",
"=",
"self",
".",
"currentTarget",
",",
"observers",
"=",
"self",
".",
... | remove some observers from current event 's observers by observer config param
@param {Object} cfg {@link KISSY.Event.CustomEvent.Observer} 's config | [
"remove",
"some",
"observers",
"from",
"current",
"event",
"s",
"observers",
"by",
"observer",
"config",
"param"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/lib/build/event/custom.js#L408-L436 | |
35,929 | craterdog-bali/js-bali-component-framework | src/elements/Reference.js | Reference | function Reference(value, parameters) {
abstractions.Element.call(this, utilities.types.REFERENCE, parameters);
try {
if (value.constructor.name !== 'URL') value = new URL(value.replace(/\$tag:#/, '$tag:%23'));
} catch (exception) {
throw new utilities.Exception({
$module: '/bali... | javascript | function Reference(value, parameters) {
abstractions.Element.call(this, utilities.types.REFERENCE, parameters);
try {
if (value.constructor.name !== 'URL') value = new URL(value.replace(/\$tag:#/, '$tag:%23'));
} catch (exception) {
throw new utilities.Exception({
$module: '/bali... | [
"function",
"Reference",
"(",
"value",
",",
"parameters",
")",
"{",
"abstractions",
".",
"Element",
".",
"call",
"(",
"this",
",",
"utilities",
".",
"types",
".",
"REFERENCE",
",",
"parameters",
")",
";",
"try",
"{",
"if",
"(",
"value",
".",
"constructor... | PUBLIC CONSTRUCTOR
This constructor creates a new reference element using the specified value.
@param {String|URL} value The value of the reference.
@param {Parameters} parameters Optional parameters used to parameterize this element.
@returns {Reference} The new reference element. | [
"PUBLIC",
"CONSTRUCTOR",
"This",
"constructor",
"creates",
"a",
"new",
"reference",
"element",
"using",
"the",
"specified",
"value",
"."
] | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/elements/Reference.js#L31-L49 |
35,930 | craterdog-bali/js-bali-component-framework | src/elements/Complex.js | Complex | function Complex(real, imaginary, parameters) {
abstractions.Element.call(this, utilities.types.NUMBER, parameters);
// normalize the values
if (real === undefined || real === null || real === -0) {
real = 0;
}
real = utilities.precision.lockOnExtreme(real);
if (imaginary === undefined ... | javascript | function Complex(real, imaginary, parameters) {
abstractions.Element.call(this, utilities.types.NUMBER, parameters);
// normalize the values
if (real === undefined || real === null || real === -0) {
real = 0;
}
real = utilities.precision.lockOnExtreme(real);
if (imaginary === undefined ... | [
"function",
"Complex",
"(",
"real",
",",
"imaginary",
",",
"parameters",
")",
"{",
"abstractions",
".",
"Element",
".",
"call",
"(",
"this",
",",
"utilities",
".",
"types",
".",
"NUMBER",
",",
"parameters",
")",
";",
"// normalize the values",
"if",
"(",
"... | PUBLIC CONSTRUCTORS
This constructor creates an immutable instance of a complex number using the specified
real and imaginary values. If the imaginary value is an angle then the complex number
is in polar form, otherwise it is in rectangular form.
@constructor
@param {Number} real The real value of the complex numbe... | [
"PUBLIC",
"CONSTRUCTORS",
"This",
"constructor",
"creates",
"an",
"immutable",
"instance",
"of",
"a",
"complex",
"number",
"using",
"the",
"specified",
"real",
"and",
"imaginary",
"values",
".",
"If",
"the",
"imaginary",
"value",
"is",
"an",
"angle",
"then",
"... | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/elements/Complex.js#L35-L84 |
35,931 | craterdog-bali/js-bali-component-framework | src/utilities/Sorter.js | Sorter | function Sorter(comparator) {
// the comparator is a private attribute so methods that use it are defined in the constructor
comparator = comparator || new Comparator();
this.sortCollection = function(collection) {
if (collection && collection.getSize() > 1) {
var array = collection.to... | javascript | function Sorter(comparator) {
// the comparator is a private attribute so methods that use it are defined in the constructor
comparator = comparator || new Comparator();
this.sortCollection = function(collection) {
if (collection && collection.getSize() > 1) {
var array = collection.to... | [
"function",
"Sorter",
"(",
"comparator",
")",
"{",
"// the comparator is a private attribute so methods that use it are defined in the constructor",
"comparator",
"=",
"comparator",
"||",
"new",
"Comparator",
"(",
")",
";",
"this",
".",
"sortCollection",
"=",
"function",
"(... | PUBLIC CONSTRUCTORS
This sorter class implements a standard merge sort algorithm. The collection to be sorted
is recursively split into two collections each of which are then sorted and then the two
collections are merged back into a sorted collection.
@constructor
@param {Comparator} comparator An optional comparat... | [
"PUBLIC",
"CONSTRUCTORS",
"This",
"sorter",
"class",
"implements",
"a",
"standard",
"merge",
"sort",
"algorithm",
".",
"The",
"collection",
"to",
"be",
"sorted",
"is",
"recursively",
"split",
"into",
"two",
"collections",
"each",
"of",
"which",
"are",
"then",
... | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/utilities/Sorter.js#L30-L45 |
35,932 | craterdog-bali/js-bali-component-framework | src/collections/Set.js | Set | function Set(parameters, comparator) {
parameters = parameters || new composites.Parameters(new Catalog());
if (!parameters.getParameter('$type')) parameters.setParameter('$type', '/bali/collections/Set/v1');
abstractions.Collection.call(this, utilities.types.SET, parameters);
// the comparator and tre... | javascript | function Set(parameters, comparator) {
parameters = parameters || new composites.Parameters(new Catalog());
if (!parameters.getParameter('$type')) parameters.setParameter('$type', '/bali/collections/Set/v1');
abstractions.Collection.call(this, utilities.types.SET, parameters);
// the comparator and tre... | [
"function",
"Set",
"(",
"parameters",
",",
"comparator",
")",
"{",
"parameters",
"=",
"parameters",
"||",
"new",
"composites",
".",
"Parameters",
"(",
"new",
"Catalog",
"(",
")",
")",
";",
"if",
"(",
"!",
"parameters",
".",
"getParameter",
"(",
"'$type'",
... | PUBLIC CONSTRUCTORS
This constructor creates a new set component with optional parameters that are
used to parameterize its type.
@param {Parameters} parameters Optional parameters used to parameterize this set.
@param {Comparator} comparator An optional comparator.
@returns {Set} The new set. | [
"PUBLIC",
"CONSTRUCTORS",
"This",
"constructor",
"creates",
"a",
"new",
"set",
"component",
"with",
"optional",
"parameters",
"that",
"are",
"used",
"to",
"parameterize",
"its",
"type",
"."
] | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/collections/Set.js#L33-L104 |
35,933 | llorsat/wonkajs | dist/templates/libraries/helpers.js | uri | function uri() {
var uri = App.pkg.settings.api || "";
_.each(arguments, function(item) {
uri += item + '/';
});
return uri.substring(0, uri.length - 1);
} | javascript | function uri() {
var uri = App.pkg.settings.api || "";
_.each(arguments, function(item) {
uri += item + '/';
});
return uri.substring(0, uri.length - 1);
} | [
"function",
"uri",
"(",
")",
"{",
"var",
"uri",
"=",
"App",
".",
"pkg",
".",
"settings",
".",
"api",
"||",
"\"\"",
";",
"_",
".",
"each",
"(",
"arguments",
",",
"function",
"(",
"item",
")",
"{",
"uri",
"+=",
"item",
"+",
"'/'",
";",
"}",
")",
... | API uri builder | [
"API",
"uri",
"builder"
] | c45d7feaefa8dbf29b6fd1c824a1767173452611 | https://github.com/llorsat/wonkajs/blob/c45d7feaefa8dbf29b6fd1c824a1767173452611/dist/templates/libraries/helpers.js#L53-L59 |
35,934 | llorsat/wonkajs | dist/templates/libraries/helpers.js | setLanguage | function setLanguage(language) {
window[App.pkg.settings.storage_engine || 'localStorage'][App.pkg._id + '-language'] = language;
var xhr = null;
var activexmodes = ["Msxml2.XMLHTTP", "Microsoft.XMLHTTP"];
if(window.ActiveXObject) {
for(var i = 0; i < activexmodes.length; i++) {
try {
xhr = n... | javascript | function setLanguage(language) {
window[App.pkg.settings.storage_engine || 'localStorage'][App.pkg._id + '-language'] = language;
var xhr = null;
var activexmodes = ["Msxml2.XMLHTTP", "Microsoft.XMLHTTP"];
if(window.ActiveXObject) {
for(var i = 0; i < activexmodes.length; i++) {
try {
xhr = n... | [
"function",
"setLanguage",
"(",
"language",
")",
"{",
"window",
"[",
"App",
".",
"pkg",
".",
"settings",
".",
"storage_engine",
"||",
"'localStorage'",
"]",
"[",
"App",
".",
"pkg",
".",
"_id",
"+",
"'-language'",
"]",
"=",
"language",
";",
"var",
"xhr",
... | Init the I18n with language specified | [
"Init",
"the",
"I18n",
"with",
"language",
"specified"
] | c45d7feaefa8dbf29b6fd1c824a1767173452611 | https://github.com/llorsat/wonkajs/blob/c45d7feaefa8dbf29b6fd1c824a1767173452611/dist/templates/libraries/helpers.js#L62-L86 |
35,935 | llorsat/wonkajs | dist/templates/libraries/helpers.js | namespace | function namespace() {
var args = Array.prototype.slice.call(arguments);
var setComponents = function(context, first, rest) {
if(!context[first]) {
context[first] = {
models: {},
collections: {},
views: {},
};
}
if(rest.length) {
setComponents(context[first], _.... | javascript | function namespace() {
var args = Array.prototype.slice.call(arguments);
var setComponents = function(context, first, rest) {
if(!context[first]) {
context[first] = {
models: {},
collections: {},
views: {},
};
}
if(rest.length) {
setComponents(context[first], _.... | [
"function",
"namespace",
"(",
")",
"{",
"var",
"args",
"=",
"Array",
".",
"prototype",
".",
"slice",
".",
"call",
"(",
"arguments",
")",
";",
"var",
"setComponents",
"=",
"function",
"(",
"context",
",",
"first",
",",
"rest",
")",
"{",
"if",
"(",
"!"... | Create a new namespace | [
"Create",
"a",
"new",
"namespace"
] | c45d7feaefa8dbf29b6fd1c824a1767173452611 | https://github.com/llorsat/wonkajs/blob/c45d7feaefa8dbf29b6fd1c824a1767173452611/dist/templates/libraries/helpers.js#L93-L108 |
35,936 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | Lexer | function Lexer(text, cfg) {
var self = this;
self.page = new Page(text);
self.cursor = new Cursor();
self.nodeFactory = this;
this.cfg = cfg || {};
} | javascript | function Lexer(text, cfg) {
var self = this;
self.page = new Page(text);
self.cursor = new Cursor();
self.nodeFactory = this;
this.cfg = cfg || {};
} | [
"function",
"Lexer",
"(",
"text",
",",
"cfg",
")",
"{",
"var",
"self",
"=",
"this",
";",
"self",
".",
"page",
"=",
"new",
"Page",
"(",
"text",
")",
";",
"self",
".",
"cursor",
"=",
"new",
"Cursor",
"(",
")",
";",
"self",
".",
"nodeFactory",
"=",
... | Lexer for html parser
@param {String} text html content
@param {Object} cfg config object
@class KISSY.HtmlParser.Lexer
Lexer for html parser
@param {String} text html content
@param {Object} cfg config object
@class KISSY.HtmlParser.Lexer | [
"Lexer",
"for",
"html",
"parser"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L1004-L1010 |
35,937 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | function (quoteSmart) {
var self = this, start, ch, ret, cursor = self.cursor, page = self.page;
start = cursor.position;
ch = page.getChar(cursor);
switch (ch) {
case -1:
ret = null;
break;
case '<':
... | javascript | function (quoteSmart) {
var self = this, start, ch, ret, cursor = self.cursor, page = self.page;
start = cursor.position;
ch = page.getChar(cursor);
switch (ch) {
case -1:
ret = null;
break;
case '<':
... | [
"function",
"(",
"quoteSmart",
")",
"{",
"var",
"self",
"=",
"this",
",",
"start",
",",
"ch",
",",
"ret",
",",
"cursor",
"=",
"self",
".",
"cursor",
",",
"page",
"=",
"self",
".",
"page",
";",
"start",
"=",
"cursor",
".",
"position",
";",
"ch",
"... | get next node parsed from content
@param quoteSmart
@returns {KISSY.HtmlParse.Node} | [
"get",
"next",
"node",
"parsed",
"from",
"content"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L1024-L1073 | |
35,938 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | function (start, quoteSmart) {
var done = 0, ch, page = this.page, cursor = this.cursor, quote = 0;
while (!done) {
ch = page.getChar(cursor);
if (NEGATIVE_1 === ch) {
done = 1;
} else if (quoteSmart && 0 === quote && ('"' === c... | javascript | function (start, quoteSmart) {
var done = 0, ch, page = this.page, cursor = this.cursor, quote = 0;
while (!done) {
ch = page.getChar(cursor);
if (NEGATIVE_1 === ch) {
done = 1;
} else if (quoteSmart && 0 === quote && ('"' === c... | [
"function",
"(",
"start",
",",
"quoteSmart",
")",
"{",
"var",
"done",
"=",
"0",
",",
"ch",
",",
"page",
"=",
"this",
".",
"page",
",",
"cursor",
"=",
"this",
".",
"cursor",
",",
"quote",
"=",
"0",
";",
"while",
"(",
"!",
"done",
")",
"{",
"ch",... | parse a string node
@private
@param start
@param quoteSmart strings ignore quoted contents | [
"parse",
"a",
"string",
"node"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L1385-L1449 | |
35,939 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | function (quoteSmart, tagName) {
var start, state, done, quote, ch, end, comment, mCursor = this.cursor, mPage = this.page;
start = mCursor.position;
state = 0;
done = false;
quote = '';
comment = false;
while (!done) {
... | javascript | function (quoteSmart, tagName) {
var start, state, done, quote, ch, end, comment, mCursor = this.cursor, mPage = this.page;
start = mCursor.position;
state = 0;
done = false;
quote = '';
comment = false;
while (!done) {
... | [
"function",
"(",
"quoteSmart",
",",
"tagName",
")",
"{",
"var",
"start",
",",
"state",
",",
"done",
",",
"quote",
",",
"ch",
",",
"end",
",",
"comment",
",",
"mCursor",
"=",
"this",
".",
"cursor",
",",
"mPage",
"=",
"this",
".",
"page",
";",
"start... | parse cdata such as code in script
@private
@param quoteSmart if set true end tag in quote
(but not in comment mode) does not end current tag ( <script>x='<a>taobao</a>'</script> )
@param tagName | [
"parse",
"cdata",
"such",
"as",
"code",
"in",
"script"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L1457-L1648 | |
35,940 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | function (attributes, bookmarks) {
var page = this.page;
attributes.push(new Attribute(page.getText(bookmarks[1], bookmarks[2]), '=', page.getText(bookmarks[3], bookmarks[4])));
} | javascript | function (attributes, bookmarks) {
var page = this.page;
attributes.push(new Attribute(page.getText(bookmarks[1], bookmarks[2]), '=', page.getText(bookmarks[3], bookmarks[4])));
} | [
"function",
"(",
"attributes",
",",
"bookmarks",
")",
"{",
"var",
"page",
"=",
"this",
".",
"page",
";",
"attributes",
".",
"push",
"(",
"new",
"Attribute",
"(",
"page",
".",
"getText",
"(",
"bookmarks",
"[",
"1",
"]",
",",
"bookmarks",
"[",
"2",
"]"... | Generate an unquoted attribute
@private
@param attributes The list so far.
@param bookmarks The array of positions. | [
"Generate",
"an",
"unquoted",
"attribute"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L1685-L1688 | |
35,941 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | function (cursor) {
var cs = this.lineCursors;
for (var i = 0; i < cs.length; i++) {
if (cs[i].position > cursor.position) {
return i - 1;
}
}
return i;
} | javascript | function (cursor) {
var cs = this.lineCursors;
for (var i = 0; i < cs.length; i++) {
if (cs[i].position > cursor.position) {
return i - 1;
}
}
return i;
} | [
"function",
"(",
"cursor",
")",
"{",
"var",
"cs",
"=",
"this",
".",
"lineCursors",
";",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"cs",
".",
"length",
";",
"i",
"++",
")",
"{",
"if",
"(",
"cs",
"[",
"i",
"]",
".",
"position",
">",
"c... | line number of this cursor , index from zero
@param cursor | [
"line",
"number",
"of",
"this",
"cursor",
"index",
"from",
"zero"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L1819-L1827 | |
35,942 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | Node | function Node(page, startPosition, endPosition) {
this.parentNode = null;
this.page = page;
this.startPosition = startPosition;
this.endPosition = endPosition;
this.nodeName = null;
this.previousSibling = null;
this.nextSibling = null;
} | javascript | function Node(page, startPosition, endPosition) {
this.parentNode = null;
this.page = page;
this.startPosition = startPosition;
this.endPosition = endPosition;
this.nodeName = null;
this.previousSibling = null;
this.nextSibling = null;
} | [
"function",
"Node",
"(",
"page",
",",
"startPosition",
",",
"endPosition",
")",
"{",
"this",
".",
"parentNode",
"=",
"null",
";",
"this",
".",
"page",
"=",
"page",
";",
"this",
".",
"startPosition",
"=",
"startPosition",
";",
"this",
".",
"endPosition",
... | node structure from htmlparser
@param page
@param startPosition
@param endPosition
@class KISSY.HtmlParse.Node
node structure from htmlparser
@param page
@param startPosition
@param endPosition
@class KISSY.HtmlParse.Node | [
"node",
"structure",
"from",
"htmlparser"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L1939-L1947 |
35,943 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | Tag | function Tag(page, startPosition, endPosition, attributes) {
var self = this;
self.childNodes = [];
self.firstChild = null;
self.lastChild = null;
self.attributes = attributes || [];
self.nodeType = 1;
if (typeof page === 'string') {
createTag.apply(nu... | javascript | function Tag(page, startPosition, endPosition, attributes) {
var self = this;
self.childNodes = [];
self.firstChild = null;
self.lastChild = null;
self.attributes = attributes || [];
self.nodeType = 1;
if (typeof page === 'string') {
createTag.apply(nu... | [
"function",
"Tag",
"(",
"page",
",",
"startPosition",
",",
"endPosition",
",",
"attributes",
")",
"{",
"var",
"self",
"=",
"this",
";",
"self",
".",
"childNodes",
"=",
"[",
"]",
";",
"self",
".",
"firstChild",
"=",
"null",
";",
"self",
".",
"lastChild"... | Html Tag Class
@param page
@param startPosition
@param endPosition
@param attributes
@class KISSY.HtmlParser.Tag
Html Tag Class
@param page
@param startPosition
@param endPosition
@param attributes
@class KISSY.HtmlParser.Tag | [
"Html",
"Tag",
"Class"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L2125-L2158 |
35,944 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | function () {
var self = this;
if (!self.isChildrenFiltered) {
var writer = new (module.require('html-parser/writer/basic'))();
self._writeChildrenHTML(writer);
var parser = new (module.require('html-parser/parser'))(writer.getHtml()), children = p... | javascript | function () {
var self = this;
if (!self.isChildrenFiltered) {
var writer = new (module.require('html-parser/writer/basic'))();
self._writeChildrenHTML(writer);
var parser = new (module.require('html-parser/parser'))(writer.getHtml()), children = p... | [
"function",
"(",
")",
"{",
"var",
"self",
"=",
"this",
";",
"if",
"(",
"!",
"self",
".",
"isChildrenFiltered",
")",
"{",
"var",
"writer",
"=",
"new",
"(",
"module",
".",
"require",
"(",
"'html-parser/writer/basic'",
")",
")",
"(",
")",
";",
"self",
"... | give root node a chance to filter children first | [
"give",
"root",
"node",
"a",
"chance",
"to",
"filter",
"children",
"first"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L2296-L2308 | |
35,945 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | function (writer, filter) {
var self = this, tmp, attrName, tagName = self.tagName; // special treat for doctype
// special treat for doctype
if (tagName === '!doctype') {
writer.append(this.toHtml() + '\n');
return;
}
self._... | javascript | function (writer, filter) {
var self = this, tmp, attrName, tagName = self.tagName; // special treat for doctype
// special treat for doctype
if (tagName === '!doctype') {
writer.append(this.toHtml() + '\n');
return;
}
self._... | [
"function",
"(",
"writer",
",",
"filter",
")",
"{",
"var",
"self",
"=",
"this",
",",
"tmp",
",",
"attrName",
",",
"tagName",
"=",
"self",
".",
"tagName",
";",
"// special treat for doctype",
"// special treat for doctype",
"if",
"(",
"tagName",
"===",
"'!docty... | serialize tag to html string in writer
@param writer
@param filter | [
"serialize",
"tag",
"to",
"html",
"string",
"in",
"writer"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L2314-L2375 | |
35,946 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | Parser | function Parser(html, opts) {
// fake root node
html = util.trim(html);
this.originalHTML = html; // only allow condition
// 1. start with <!doctype
// 2. start with <!html
// 3. sta... | javascript | function Parser(html, opts) {
// fake root node
html = util.trim(html);
this.originalHTML = html; // only allow condition
// 1. start with <!doctype
// 2. start with <!html
// 3. sta... | [
"function",
"Parser",
"(",
"html",
",",
"opts",
")",
"{",
"// fake root node",
"html",
"=",
"util",
".",
"trim",
"(",
"html",
")",
";",
"this",
".",
"originalHTML",
"=",
"html",
";",
"// only allow condition",
"// 1. start with <!doctype",
"// 2. start with <!html... | Html Parse Class
@param html
@param opts
@class KISSY.HtmlParser.Parser
Html Parse Class
@param html
@param opts
@class KISSY.HtmlParser.Parser | [
"Html",
"Parse",
"Class"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L2478-L2500 |
35,947 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | MinifyWriter | function MinifyWriter() {
var self = this;
MinifyWriter.superclass.constructor.apply(self, arguments);
self.inPre = 0;
} | javascript | function MinifyWriter() {
var self = this;
MinifyWriter.superclass.constructor.apply(self, arguments);
self.inPre = 0;
} | [
"function",
"MinifyWriter",
"(",
")",
"{",
"var",
"self",
"=",
"this",
";",
"MinifyWriter",
".",
"superclass",
".",
"constructor",
".",
"apply",
"(",
"self",
",",
"arguments",
")",
";",
"self",
".",
"inPre",
"=",
"0",
";",
"}"
] | MinifyWriter for html content
@class KISSY.HtmlParser.MinifyWriter
@extends KISSY.HtmlParser.BasicWriter
MinifyWriter for html content
@class KISSY.HtmlParser.MinifyWriter
@extends KISSY.HtmlParser.BasicWriter | [
"MinifyWriter",
"for",
"html",
"content"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L3452-L3456 |
35,948 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | function (text) {
if (isConditionalComment(text)) {
text = cleanConditionalComment(text);
MinifyWriter.superclass.comment.call(this, text);
}
} | javascript | function (text) {
if (isConditionalComment(text)) {
text = cleanConditionalComment(text);
MinifyWriter.superclass.comment.call(this, text);
}
} | [
"function",
"(",
"text",
")",
"{",
"if",
"(",
"isConditionalComment",
"(",
"text",
")",
")",
"{",
"text",
"=",
"cleanConditionalComment",
"(",
"text",
")",
";",
"MinifyWriter",
".",
"superclass",
".",
"comment",
".",
"call",
"(",
"this",
",",
"text",
")"... | remove non-conditional comment | [
"remove",
"non",
"-",
"conditional",
"comment"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L3461-L3466 | |
35,949 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js | function (el) {
var self = this;
if (el.tagName === 'pre') {
self.inPre = 1;
}
MinifyWriter.superclass.openTag.apply(self, arguments);
} | javascript | function (el) {
var self = this;
if (el.tagName === 'pre') {
self.inPre = 1;
}
MinifyWriter.superclass.openTag.apply(self, arguments);
} | [
"function",
"(",
"el",
")",
"{",
"var",
"self",
"=",
"this",
";",
"if",
"(",
"el",
".",
"tagName",
"===",
"'pre'",
")",
"{",
"self",
".",
"inPre",
"=",
"1",
";",
"}",
"MinifyWriter",
".",
"superclass",
".",
"openTag",
".",
"apply",
"(",
"self",
"... | record pre track | [
"record",
"pre",
"track"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/html-parser-debug.js#L3470-L3476 | |
35,950 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.10/xtemplate.js | XTemplate | function XTemplate(tpl, config) {
var self = this;
config = self.config = config || {};
config.loader = config.loader || loader;
if (typeof tpl === 'string') {
tpl = Compiler.compile(tpl, config && config.name);
}
XTemplate.superclass.constructor.call(self, tp... | javascript | function XTemplate(tpl, config) {
var self = this;
config = self.config = config || {};
config.loader = config.loader || loader;
if (typeof tpl === 'string') {
tpl = Compiler.compile(tpl, config && config.name);
}
XTemplate.superclass.constructor.call(self, tp... | [
"function",
"XTemplate",
"(",
"tpl",
",",
"config",
")",
"{",
"var",
"self",
"=",
"this",
";",
"config",
"=",
"self",
".",
"config",
"=",
"config",
"||",
"{",
"}",
";",
"config",
".",
"loader",
"=",
"config",
".",
"loader",
"||",
"loader",
";",
"if... | xtemplate engine for KISSY.
@example
KISSY.use('xtemplate',function(S, XTemplate){
document.writeln(new XTemplate('{{title}}').render({title:2}));
});
@class KISSY.XTemplate
@extends KISSY.XTemplate.Runtime
xtemplate engine for KISSY.
@example
KISSY.use('xtemplate',function(S, XTemplate){
document.writeln(new XTem... | [
"xtemplate",
"engine",
"for",
"KISSY",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.10/xtemplate.js#L77-L85 |
35,951 | Automattic/wpcom-unpublished | lib/site.wordads.settings.js | SiteWordAdsSettings | function SiteWordAdsSettings( sid, wpcom ) {
if ( ! ( this instanceof SiteWordAdsSettings ) ) {
return new SiteWordAdsSettings( sid, wpcom );
}
this._sid = sid;
this.wpcom = wpcom;
} | javascript | function SiteWordAdsSettings( sid, wpcom ) {
if ( ! ( this instanceof SiteWordAdsSettings ) ) {
return new SiteWordAdsSettings( sid, wpcom );
}
this._sid = sid;
this.wpcom = wpcom;
} | [
"function",
"SiteWordAdsSettings",
"(",
"sid",
",",
"wpcom",
")",
"{",
"if",
"(",
"!",
"(",
"this",
"instanceof",
"SiteWordAdsSettings",
")",
")",
"{",
"return",
"new",
"SiteWordAdsSettings",
"(",
"sid",
",",
"wpcom",
")",
";",
"}",
"this",
".",
"_sid",
... | `SiteWordAdsSettings` constructor.
*Example:*
// Require `wpcom-unpublished` library
var wpcomUnpublished = require( 'wpcom-unpublished' );
// Create a `wpcomUnpublished` instance
var wpcom = wpcomUnpublished();
// Create a `SiteWordAdsSettings` instance
var wordAds = wpcom
.site( 'my-blog.wordpress.com' )
.wordAds(... | [
"SiteWordAdsSettings",
"constructor",
"."
] | 9d3112f0e647cf2a9d5a9aa5fc1d7cda66ef185e | https://github.com/Automattic/wpcom-unpublished/blob/9d3112f0e647cf2a9d5a9aa5fc1d7cda66ef185e/lib/site.wordads.settings.js#L23-L30 |
35,952 | craterdog-bali/js-bali-component-framework | src/utilities/Duplicator.js | Duplicator | function Duplicator() {
this.duplicateComponent = function(component) {
const visitor = new DuplicatingVisitor();
component.acceptVisitor(visitor);
return visitor.result;
};
return this;
} | javascript | function Duplicator() {
this.duplicateComponent = function(component) {
const visitor = new DuplicatingVisitor();
component.acceptVisitor(visitor);
return visitor.result;
};
return this;
} | [
"function",
"Duplicator",
"(",
")",
"{",
"this",
".",
"duplicateComponent",
"=",
"function",
"(",
"component",
")",
"{",
"const",
"visitor",
"=",
"new",
"DuplicatingVisitor",
"(",
")",
";",
"component",
".",
"acceptVisitor",
"(",
"visitor",
")",
";",
"return... | PUBLIC CONSTRUCTORS
This class implements a duplicator that uses a visitor to create a deep copy of a
component. Since elements are immutable, they are not copied, only referenced.
@constructor
@returns {Duplicator} The new component duplicator. | [
"PUBLIC",
"CONSTRUCTORS",
"This",
"class",
"implements",
"a",
"duplicator",
"that",
"uses",
"a",
"visitor",
"to",
"create",
"a",
"deep",
"copy",
"of",
"a",
"component",
".",
"Since",
"elements",
"are",
"immutable",
"they",
"are",
"not",
"copied",
"only",
"re... | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/utilities/Duplicator.js#L32-L41 |
35,953 | craterdog-bali/js-bali-component-framework | src/composites/Source.js | Source | function Source(procedure, parameters) {
abstractions.Composite.call(this, utilities.types.SOURCE, parameters);
this.getProcedure = function() { return procedure; };
return this;
} | javascript | function Source(procedure, parameters) {
abstractions.Composite.call(this, utilities.types.SOURCE, parameters);
this.getProcedure = function() { return procedure; };
return this;
} | [
"function",
"Source",
"(",
"procedure",
",",
"parameters",
")",
"{",
"abstractions",
".",
"Composite",
".",
"call",
"(",
"this",
",",
"utilities",
".",
"types",
".",
"SOURCE",
",",
"parameters",
")",
";",
"this",
".",
"getProcedure",
"=",
"function",
"(",
... | PUBLIC FUNCTIONS
This constructor creates a new source code component with optional parameters that are
used to parameterize its behavior.
@param {Tree} procedure The procedure that is contained within the source code.
@param {Parameters} parameters Optional parameters used to parameterize the source code.
@returns {... | [
"PUBLIC",
"FUNCTIONS",
"This",
"constructor",
"creates",
"a",
"new",
"source",
"code",
"component",
"with",
"optional",
"parameters",
"that",
"are",
"used",
"to",
"parameterize",
"its",
"behavior",
"."
] | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/composites/Source.js#L30-L34 |
35,954 | craterdog-bali/js-bali-component-framework | src/elements/Moment.js | Moment | function Moment(value, parameters) {
abstractions.Element.call(this, utilities.types.MOMENT, parameters);
var format;
if (value === undefined || value === null) {
format = FORMATS[7];
value = moment.utc(); // the current moment
} else {
switch (typeof value) {
case '... | javascript | function Moment(value, parameters) {
abstractions.Element.call(this, utilities.types.MOMENT, parameters);
var format;
if (value === undefined || value === null) {
format = FORMATS[7];
value = moment.utc(); // the current moment
} else {
switch (typeof value) {
case '... | [
"function",
"Moment",
"(",
"value",
",",
"parameters",
")",
"{",
"abstractions",
".",
"Element",
".",
"call",
"(",
"this",
",",
"utilities",
".",
"types",
".",
"MOMENT",
",",
"parameters",
")",
";",
"var",
"format",
";",
"if",
"(",
"value",
"===",
"und... | PUBLIC CONSTRUCTOR
This constructor creates a new moment in time using the specified value and parameters.
@param {String|Number} value The source string value of the moment in time.
@param {Parameters} parameters Optional parameters used to parameterize this element.
@returns {Moment} The new moment in time. | [
"PUBLIC",
"CONSTRUCTOR",
"This",
"constructor",
"creates",
"a",
"new",
"moment",
"in",
"time",
"using",
"the",
"specified",
"value",
"and",
"parameters",
"."
] | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/elements/Moment.js#L44-L83 |
35,955 | craterdog-bali/js-bali-component-framework | src/composites/Tree.js | Tree | function Tree(type) {
abstractions.Composite.call(this, type);
if (!utilities.types.isProcedural(type)) {
throw new utilities.Exception({
$module: '/bali/composites/Tree',
$procedure: '$Tree',
$exception: '$invalidParameter',
$parameter: utilities.types.sy... | javascript | function Tree(type) {
abstractions.Composite.call(this, type);
if (!utilities.types.isProcedural(type)) {
throw new utilities.Exception({
$module: '/bali/composites/Tree',
$procedure: '$Tree',
$exception: '$invalidParameter',
$parameter: utilities.types.sy... | [
"function",
"Tree",
"(",
"type",
")",
"{",
"abstractions",
".",
"Composite",
".",
"call",
"(",
"this",
",",
"type",
")",
";",
"if",
"(",
"!",
"utilities",
".",
"types",
".",
"isProcedural",
"(",
"type",
")",
")",
"{",
"throw",
"new",
"utilities",
"."... | PUBLIC FUNCTIONS
This constructor creates a new tree node component.
@param {Number} type The type of the tree node component.
@returns {Tree} The new tree node component. | [
"PUBLIC",
"FUNCTIONS",
"This",
"constructor",
"creates",
"a",
"new",
"tree",
"node",
"component",
"."
] | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/composites/Tree.js#L32-L68 |
35,956 | Automattic/wpcom-unpublished | lib/site.wordads.js | SiteWordAds | function SiteWordAds( sid, wpcom ) {
if ( ! ( this instanceof SiteWordAds ) ) {
return new SiteWordAds( sid, wpcom );
}
this._sid = sid;
this.wpcom = wpcom;
} | javascript | function SiteWordAds( sid, wpcom ) {
if ( ! ( this instanceof SiteWordAds ) ) {
return new SiteWordAds( sid, wpcom );
}
this._sid = sid;
this.wpcom = wpcom;
} | [
"function",
"SiteWordAds",
"(",
"sid",
",",
"wpcom",
")",
"{",
"if",
"(",
"!",
"(",
"this",
"instanceof",
"SiteWordAds",
")",
")",
"{",
"return",
"new",
"SiteWordAds",
"(",
"sid",
",",
"wpcom",
")",
";",
"}",
"this",
".",
"_sid",
"=",
"sid",
";",
"... | `SiteWordAds` constructor.
Use a `WPCOM#Me` instance to create a new `SiteWordAds` instance.
*Example:*
// Require `wpcom-unpublished` library
var wpcomUnpublished = require( 'wpcom-unpublished' );
// Create a `wpcomUnpublished` instance
var wpcom = wpcomUnpublished();
// Create a `SiteWordAds` instance
var wordAds... | [
"SiteWordAds",
"constructor",
"."
] | 9d3112f0e647cf2a9d5a9aa5fc1d7cda66ef185e | https://github.com/Automattic/wpcom-unpublished/blob/9d3112f0e647cf2a9d5a9aa5fc1d7cda66ef185e/lib/site.wordads.js#L32-L39 |
35,957 | craterdog-bali/js-bali-component-framework | src/elements/Name.js | Name | function Name(value, parameters) {
abstractions.Element.call(this, utilities.types.NAME, parameters);
if (!Array.isArray(value) || value.length === 0) {
throw new utilities.Exception({
$module: '/bali/elements/Name',
$procedure: '$Name',
$exception: '$invalidParameter... | javascript | function Name(value, parameters) {
abstractions.Element.call(this, utilities.types.NAME, parameters);
if (!Array.isArray(value) || value.length === 0) {
throw new utilities.Exception({
$module: '/bali/elements/Name',
$procedure: '$Name',
$exception: '$invalidParameter... | [
"function",
"Name",
"(",
"value",
",",
"parameters",
")",
"{",
"abstractions",
".",
"Element",
".",
"call",
"(",
"this",
",",
"utilities",
".",
"types",
".",
"NAME",
",",
"parameters",
")",
";",
"if",
"(",
"!",
"Array",
".",
"isArray",
"(",
"value",
... | PUBLIC CONSTRUCTOR
This constructor creates a new name element using the specified value.
@param {Array} value An array containing the parts of the name string.
@param {Parameters} parameters Optional parameters used to parameterize this element.
@returns {Symbol} The new name string element. | [
"PUBLIC",
"CONSTRUCTOR",
"This",
"constructor",
"creates",
"a",
"new",
"name",
"element",
"using",
"the",
"specified",
"value",
"."
] | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/elements/Name.js#L30-L46 |
35,958 | craterdog-bali/js-bali-component-framework | src/elements/Symbol.js | Symbol | function Symbol(value, parameters) {
abstractions.Element.call(this, utilities.types.SYMBOL, parameters);
if (!value || !/^[a-zA-Z][0-9a-zA-Z]*$/g.test(value)) {
throw new utilities.Exception({
$module: '/bali/elements/Symbol',
$procedure: '$Symbol',
$exception: '$inv... | javascript | function Symbol(value, parameters) {
abstractions.Element.call(this, utilities.types.SYMBOL, parameters);
if (!value || !/^[a-zA-Z][0-9a-zA-Z]*$/g.test(value)) {
throw new utilities.Exception({
$module: '/bali/elements/Symbol',
$procedure: '$Symbol',
$exception: '$inv... | [
"function",
"Symbol",
"(",
"value",
",",
"parameters",
")",
"{",
"abstractions",
".",
"Element",
".",
"call",
"(",
"this",
",",
"utilities",
".",
"types",
".",
"SYMBOL",
",",
"parameters",
")",
";",
"if",
"(",
"!",
"value",
"||",
"!",
"/",
"^[a-zA-Z][0... | PUBLIC CONSTRUCTOR
This constructor creates a new symbol element using the specified value.
@param {String} value The value of the symbol.
@param {Parameters} parameters Optional parameters used to parameterize this element.
@returns {Symbol} The new symbol element. | [
"PUBLIC",
"CONSTRUCTOR",
"This",
"constructor",
"creates",
"a",
"new",
"symbol",
"element",
"using",
"the",
"specified",
"value",
"."
] | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/elements/Symbol.js#L30-L46 |
35,959 | clncln1/node-aswbxml | lib/codepage.js | findMinIndexValue | function findMinIndexValue(pageNumber, searchFor) {
var lookupAttr = typeof searchFor === 'string' ? 'name' : 'token';
var minIndexValue = null
for (var i = 0; i < this.codePage[pageNumber].values.length; i++) {
let index = searchFor.indexOf(this.codePage[pageNumber].values[i][lookupAttr])
if ( index >= 0 &&
... | javascript | function findMinIndexValue(pageNumber, searchFor) {
var lookupAttr = typeof searchFor === 'string' ? 'name' : 'token';
var minIndexValue = null
for (var i = 0; i < this.codePage[pageNumber].values.length; i++) {
let index = searchFor.indexOf(this.codePage[pageNumber].values[i][lookupAttr])
if ( index >= 0 &&
... | [
"function",
"findMinIndexValue",
"(",
"pageNumber",
",",
"searchFor",
")",
"{",
"var",
"lookupAttr",
"=",
"typeof",
"searchFor",
"===",
"'string'",
"?",
"'name'",
":",
"'token'",
";",
"var",
"minIndexValue",
"=",
"null",
"for",
"(",
"var",
"i",
"=",
"0",
"... | Scans the list of values getting the minimun index of the searchFor element | [
"Scans",
"the",
"list",
"of",
"values",
"getting",
"the",
"minimun",
"index",
"of",
"the",
"searchFor",
"element"
] | a00c8cbb69cc2bf665810211c052b62fe2d64c13 | https://github.com/clncln1/node-aswbxml/blob/a00c8cbb69cc2bf665810211c052b62fe2d64c13/lib/codepage.js#L78-L90 |
35,960 | kissyteam/kissy-xtemplate | middleware/index.js | function(str, callback) {
try {
var result = xtpl._compile(str, source, 'utf8', 'utf8');
} catch (e) {
return callback(err);
}
callback(null, result);
} | javascript | function(str, callback) {
try {
var result = xtpl._compile(str, source, 'utf8', 'utf8');
} catch (e) {
return callback(err);
}
callback(null, result);
} | [
"function",
"(",
"str",
",",
"callback",
")",
"{",
"try",
"{",
"var",
"result",
"=",
"xtpl",
".",
"_compile",
"(",
"str",
",",
"source",
",",
"'utf8'",
",",
"'utf8'",
")",
";",
"}",
"catch",
"(",
"e",
")",
"{",
"return",
"callback",
"(",
"err",
"... | Parse and compile the CSS from the source string. | [
"Parse",
"and",
"compile",
"the",
"CSS",
"from",
"the",
"source",
"string",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/middleware/index.js#L40-L49 | |
35,961 | KleeGroup/focus-notifications | src/component/notification-group.js | groupDate | function groupDate({creationDate: date}) {
const root = 'focus.notifications.groups';
if(_isYoungerThanA('day', date)) {
return `${root}.0_today`;
}
if(_isYoungerThanA('week', date)) {
return `${root}.1_lastWeek`;
}
if(_isYoungerThanA('month', date)) {
return `${root}.2_l... | javascript | function groupDate({creationDate: date}) {
const root = 'focus.notifications.groups';
if(_isYoungerThanA('day', date)) {
return `${root}.0_today`;
}
if(_isYoungerThanA('week', date)) {
return `${root}.1_lastWeek`;
}
if(_isYoungerThanA('month', date)) {
return `${root}.2_l... | [
"function",
"groupDate",
"(",
"{",
"creationDate",
":",
"date",
"}",
")",
"{",
"const",
"root",
"=",
"'focus.notifications.groups'",
";",
"if",
"(",
"_isYoungerThanA",
"(",
"'day'",
",",
"date",
")",
")",
"{",
"return",
"`",
"${",
"root",
"}",
"`",
";",
... | function to group date | [
"function",
"to",
"group",
"date"
] | b9a529264b625a12c3d8d479f839f36f77b674f6 | https://github.com/KleeGroup/focus-notifications/blob/b9a529264b625a12c3d8d479f839f36f77b674f6/src/component/notification-group.js#L16-L28 |
35,962 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/io-debug.js | function (url, data, callback) {
if (typeof data === 'function') {
callback = data;
data = undefined;
}
return get(url, data, callback, 'jsonp');
} | javascript | function (url, data, callback) {
if (typeof data === 'function') {
callback = data;
data = undefined;
}
return get(url, data, callback, 'jsonp');
} | [
"function",
"(",
"url",
",",
"data",
",",
"callback",
")",
"{",
"if",
"(",
"typeof",
"data",
"===",
"'function'",
")",
"{",
"callback",
"=",
"data",
";",
"data",
"=",
"undefined",
";",
"}",
"return",
"get",
"(",
"url",
",",
"data",
",",
"callback",
... | preform a jsonp request
@param {String} url request destination
@param {Object} [data] name-value object associated with this request
@param {Function} [callback] success callback when this request is done.
@param callback.data returned from this request with type specified by dataType
@param {String} callback.status s... | [
"preform",
"a",
"jsonp",
"request"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/io-debug.js#L116-L122 | |
35,963 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/io-debug.js | function (url, form, data, callback, dataType) {
if (typeof data === 'function') {
dataType = /**
@type String
@ignore
*/
callback;
callback = data;
data = undefined;
}
return IO({
... | javascript | function (url, form, data, callback, dataType) {
if (typeof data === 'function') {
dataType = /**
@type String
@ignore
*/
callback;
callback = data;
data = undefined;
}
return IO({
... | [
"function",
"(",
"url",
",",
"form",
",",
"data",
",",
"callback",
",",
"dataType",
")",
"{",
"if",
"(",
"typeof",
"data",
"===",
"'function'",
")",
"{",
"dataType",
"=",
"/**\n @type String\n @ignore\n */",
"callback",
";",
"ca... | submit form without page refresh
@param {String} url request destination
@param {HTMLElement|KISSY.Node} form element tobe submited
@param {Object} [data] name-value object associated with this request
@param {Function} [callback] success callback when this request is done.@param callback.data returned from this reque... | [
"submit",
"form",
"without",
"page",
"refresh"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/io-debug.js#L163-L181 | |
35,964 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/io-debug.js | elementsToArray | function elementsToArray(elements) {
var ret = [];
for (var i = 0; i < elements.length; i++) {
ret.push(elements[i]);
}
return ret;
} | javascript | function elementsToArray(elements) {
var ret = [];
for (var i = 0; i < elements.length; i++) {
ret.push(elements[i]);
}
return ret;
} | [
"function",
"elementsToArray",
"(",
"elements",
")",
"{",
"var",
"ret",
"=",
"[",
"]",
";",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"elements",
".",
"length",
";",
"i",
"++",
")",
"{",
"ret",
".",
"push",
"(",
"elements",
"[",
"i",
"]"... | do not pass form.elements to S.makeArray ie678 bug do not pass form.elements to S.makeArray ie678 bug | [
"do",
"not",
"pass",
"form",
".",
"elements",
"to",
"S",
".",
"makeArray",
"ie678",
"bug",
"do",
"not",
"pass",
"form",
".",
"elements",
"to",
"S",
".",
"makeArray",
"ie678",
"bug"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/io-debug.js#L263-L269 |
35,965 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/io-debug.js | IO | function IO(c) {
var self = this;
if (!(self instanceof IO)) {
return new IO(c);
} // Promise.call(self);
// Promise.call(self);
IO.superclass.constructor.call(self);
Promise.Defer(self);
self.userConfig = c;
c = setUpConfig(c);
util... | javascript | function IO(c) {
var self = this;
if (!(self instanceof IO)) {
return new IO(c);
} // Promise.call(self);
// Promise.call(self);
IO.superclass.constructor.call(self);
Promise.Defer(self);
self.userConfig = c;
c = setUpConfig(c);
util... | [
"function",
"IO",
"(",
"c",
")",
"{",
"var",
"self",
"=",
"this",
";",
"if",
"(",
"!",
"(",
"self",
"instanceof",
"IO",
")",
")",
"{",
"return",
"new",
"IO",
"(",
"c",
")",
";",
"}",
"// Promise.call(self);",
"// Promise.call(self);",
"IO",
".",
"sup... | Return a io object and send request by config.
@class KISSY.IO
@extends KISSY.Promise
@cfg {String} url
request destination
@cfg {String} type request type.
eg: 'get','post'
Default to: 'get'
@cfg {String} contentType
Default to: 'application/x-www-form-urlencoded; charset=UTF-8'
Data will always be transmitted to ... | [
"Return",
"a",
"io",
"object",
"and",
"send",
"request",
"by",
"config",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/io-debug.js#L707-L851 |
35,966 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/io-debug.js | _swf | function _swf(uri, _, uid) {
if (init) {
return;
}
init = true;
var o = '<object id="' + ID + '" type="application/x-shockwave-flash" data="' + uri + '" width="0" height="0">' + '<param name="movie" value="' + uri + '" />' + '<param name="FlashVars" value="yid=' + _ + '&uid='... | javascript | function _swf(uri, _, uid) {
if (init) {
return;
}
init = true;
var o = '<object id="' + ID + '" type="application/x-shockwave-flash" data="' + uri + '" width="0" height="0">' + '<param name="movie" value="' + uri + '" />' + '<param name="FlashVars" value="yid=' + _ + '&uid='... | [
"function",
"_swf",
"(",
"uri",
",",
"_",
",",
"uid",
")",
"{",
"if",
"(",
"init",
")",
"{",
"return",
";",
"}",
"init",
"=",
"true",
";",
"var",
"o",
"=",
"'<object id=\"'",
"+",
"ID",
"+",
"'\" type=\"application/x-shockwave-flash\" data=\"'",
"+",
"ur... | create the flash transporter create the flash transporter | [
"create",
"the",
"flash",
"transporter",
"create",
"the",
"flash",
"transporter"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/io-debug.js#L1289-L1297 |
35,967 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/io-debug.js | function () {
var self = this, io = self.io, c = io.config, xdr = c.xdr || {};
if (!xdr.src) {
if (typeof KISSY !== 'undefined' && KISSY.DEV_MODE) {
xdr.src = require.toUrl('../../assets/io.swf');
} else {
xdr.src = require.... | javascript | function () {
var self = this, io = self.io, c = io.config, xdr = c.xdr || {};
if (!xdr.src) {
if (typeof KISSY !== 'undefined' && KISSY.DEV_MODE) {
xdr.src = require.toUrl('../../assets/io.swf');
} else {
xdr.src = require.... | [
"function",
"(",
")",
"{",
"var",
"self",
"=",
"this",
",",
"io",
"=",
"self",
".",
"io",
",",
"c",
"=",
"io",
".",
"config",
",",
"xdr",
"=",
"c",
".",
"xdr",
"||",
"{",
"}",
";",
"if",
"(",
"!",
"xdr",
".",
"src",
")",
"{",
"if",
"(",
... | rewrite send to support flash xdr | [
"rewrite",
"send",
"to",
"support",
"flash",
"xdr"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/io-debug.js#L1304-L1331 | |
35,968 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/io-debug.js | function () {
var self = this, c = self.io.config, uri = c.uri, hostname = uri.hostname, iframe, iframeUri, iframeDesc = iframeMap[hostname];
var proxy = PROXY_PAGE;
if (c.xdr && c.xdr.subDomain && c.xdr.subDomain.proxy) {
proxy = c.xdr.subDomain.proxy;
}
... | javascript | function () {
var self = this, c = self.io.config, uri = c.uri, hostname = uri.hostname, iframe, iframeUri, iframeDesc = iframeMap[hostname];
var proxy = PROXY_PAGE;
if (c.xdr && c.xdr.subDomain && c.xdr.subDomain.proxy) {
proxy = c.xdr.subDomain.proxy;
}
... | [
"function",
"(",
")",
"{",
"var",
"self",
"=",
"this",
",",
"c",
"=",
"self",
".",
"io",
".",
"config",
",",
"uri",
"=",
"c",
".",
"uri",
",",
"hostname",
"=",
"uri",
".",
"hostname",
",",
"iframe",
",",
"iframeUri",
",",
"iframeDesc",
"=",
"ifra... | get nativeXhr from iframe document not from current document directly like XhrTransport | [
"get",
"nativeXhr",
"from",
"iframe",
"document",
"not",
"from",
"current",
"document",
"directly",
"like",
"XhrTransport"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/io-debug.js#L1427-L1460 | |
35,969 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/io-debug.js | function (name) {
var match, responseHeaders, self = this; // ie8 will be lowercase for content-type
// ie8 will be lowercase for content-type
name = name.toLowerCase();
if (self.state === 2) {
if (!(responseHeaders = self.responseHeaders)) {
... | javascript | function (name) {
var match, responseHeaders, self = this; // ie8 will be lowercase for content-type
// ie8 will be lowercase for content-type
name = name.toLowerCase();
if (self.state === 2) {
if (!(responseHeaders = self.responseHeaders)) {
... | [
"function",
"(",
"name",
")",
"{",
"var",
"match",
",",
"responseHeaders",
",",
"self",
"=",
"this",
";",
"// ie8 will be lowercase for content-type",
"// ie8 will be lowercase for content-type",
"name",
"=",
"name",
".",
"toLowerCase",
"(",
")",
";",
"if",
"(",
"... | get header value in response to specified header name
@param {String} name header name
@return {String} header value
@member KISSY.IO | [
"get",
"header",
"value",
"in",
"response",
"to",
"specified",
"header",
"name"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/io-debug.js#L2035-L2049 | |
35,970 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/io-debug.js | function (statusText) {
var self = this;
statusText = statusText || 'abort';
if (self.transport) {
self.transport.abort(statusText);
}
self._ioReady(0, statusText);
return self;
} | javascript | function (statusText) {
var self = this;
statusText = statusText || 'abort';
if (self.transport) {
self.transport.abort(statusText);
}
self._ioReady(0, statusText);
return self;
} | [
"function",
"(",
"statusText",
")",
"{",
"var",
"self",
"=",
"this",
";",
"statusText",
"=",
"statusText",
"||",
"'abort'",
";",
"if",
"(",
"self",
".",
"transport",
")",
"{",
"self",
".",
"transport",
".",
"abort",
"(",
"statusText",
")",
";",
"}",
... | cancel this request
@member KISSY.IO
@param {String} [statusText=abort] error reason as current request object's statusText
@chainable | [
"cancel",
"this",
"request"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/io-debug.js#L2064-L2072 | |
35,971 | jonschlinkert/inquirer2 | lib/prompts/checkbox.js | getCheckbox | function getCheckbox(checked) {
return checked ? utils.chalk.green(utils.figures.radioOn) : utils.figures.radioOff;
} | javascript | function getCheckbox(checked) {
return checked ? utils.chalk.green(utils.figures.radioOn) : utils.figures.radioOff;
} | [
"function",
"getCheckbox",
"(",
"checked",
")",
"{",
"return",
"checked",
"?",
"utils",
".",
"chalk",
".",
"green",
"(",
"utils",
".",
"figures",
".",
"radioOn",
")",
":",
"utils",
".",
"figures",
".",
"radioOff",
";",
"}"
] | Get the checkbox
@param {Boolean} checked - add a X or not to the checkbox
@return {String} Composited checkbox string | [
"Get",
"the",
"checkbox"
] | 9b4985f5bf7c8590bb79e039de1acab5719ae3fc | https://github.com/jonschlinkert/inquirer2/blob/9b4985f5bf7c8590bb79e039de1acab5719ae3fc/lib/prompts/checkbox.js#L205-L207 |
35,972 | bq/corbel-js | src/ec/paymentPlanBuilder.js | function (params) {
console.log('ecInterface.paymentplan.getAll');
return this.request({
url: this._buildUri(this.uri, 'all'),
method: corbel.request.method.GET,
query: params ? corbel.utils.serializeParams(params) : null
});
} | javascript | function (params) {
console.log('ecInterface.paymentplan.getAll');
return this.request({
url: this._buildUri(this.uri, 'all'),
method: corbel.request.method.GET,
query: params ? corbel.utils.serializeParams(params) : null
});
} | [
"function",
"(",
"params",
")",
"{",
"console",
".",
"log",
"(",
"'ecInterface.paymentplan.getAll'",
")",
";",
"return",
"this",
".",
"request",
"(",
"{",
"url",
":",
"this",
".",
"_buildUri",
"(",
"this",
".",
"uri",
",",
"'all'",
")",
",",
"method",
... | Gets payment plans paginated, this endpoint is only for admins
@method
@memberOf corbel.Ec.PaymentPlanBuilder
@param {Object} params The params filter
@param {Integer} params.api:pageSize Number of result returned in the page (>0 , default: 10)
@param {String} params.api:query A search query ex... | [
"Gets",
"payment",
"plans",
"paginated",
"this",
"endpoint",
"is",
"only",
"for",
"admins"
] | 00074882676b592d2ac16868279c58b0c4faf1e2 | https://github.com/bq/corbel-js/blob/00074882676b592d2ac16868279c58b0c4faf1e2/src/ec/paymentPlanBuilder.js#L141-L149 | |
35,973 | faucet-pipeline/faucet-pipeline-static | index.js | determineTargetDir | function determineTargetDir(source, target) {
return stat(source).
then(results => results.isDirectory() ? target : path.dirname(target));
} | javascript | function determineTargetDir(source, target) {
return stat(source).
then(results => results.isDirectory() ? target : path.dirname(target));
} | [
"function",
"determineTargetDir",
"(",
"source",
",",
"target",
")",
"{",
"return",
"stat",
"(",
"source",
")",
".",
"then",
"(",
"results",
"=>",
"results",
".",
"isDirectory",
"(",
")",
"?",
"target",
":",
"path",
".",
"dirname",
"(",
"target",
")",
... | If `source` is a directory, `target` is used as target directory - otherwise, `target`'s parent directory is used | [
"If",
"source",
"is",
"a",
"directory",
"target",
"is",
"used",
"as",
"target",
"directory",
"-",
"otherwise",
"target",
"s",
"parent",
"directory",
"is",
"used"
] | 69cd6f6a8577b4ac095e6737aadfa27642df1a95 | https://github.com/faucet-pipeline/faucet-pipeline-static/blob/69cd6f6a8577b4ac095e6737aadfa27642df1a95/index.js#L57-L60 |
35,974 | jonschlinkert/benchmarked | index.js | Benchmarked | function Benchmarked(options) {
if (!(this instanceof Benchmarked)) {
return new Benchmarked(options);
}
Emitter.call(this);
this.options = Object.assign({}, options);
this.results = [];
this.defaults(this);
} | javascript | function Benchmarked(options) {
if (!(this instanceof Benchmarked)) {
return new Benchmarked(options);
}
Emitter.call(this);
this.options = Object.assign({}, options);
this.results = [];
this.defaults(this);
} | [
"function",
"Benchmarked",
"(",
"options",
")",
"{",
"if",
"(",
"!",
"(",
"this",
"instanceof",
"Benchmarked",
")",
")",
"{",
"return",
"new",
"Benchmarked",
"(",
"options",
")",
";",
"}",
"Emitter",
".",
"call",
"(",
"this",
")",
";",
"this",
".",
"... | Create an instance of Benchmarked with the given `options`.
```js
const suite = new Suite();
```
@param {Object} `options`
@api public | [
"Create",
"an",
"instance",
"of",
"Benchmarked",
"with",
"the",
"given",
"options",
"."
] | 521fc9c2b86e0a0f0ea03ded855076aa98f16df0 | https://github.com/jonschlinkert/benchmarked/blob/521fc9c2b86e0a0f0ea03ded855076aa98f16df0/index.js#L41-L49 |
35,975 | kissyteam/kissy-xtemplate | lib/xtemplate/1.3.2/runtime.js | XTemplateRuntime | function XTemplateRuntime(tpl, option) {
var self = this;
self.tpl = tpl;
option = S.merge(defaultConfig, option);
option.subTpls = S.merge(option.subTpls, XTemplateRuntime.subTpls);
option.commands = S.merge(option.commands, XTemplateRuntime.commands);
this.option = opti... | javascript | function XTemplateRuntime(tpl, option) {
var self = this;
self.tpl = tpl;
option = S.merge(defaultConfig, option);
option.subTpls = S.merge(option.subTpls, XTemplateRuntime.subTpls);
option.commands = S.merge(option.commands, XTemplateRuntime.commands);
this.option = opti... | [
"function",
"XTemplateRuntime",
"(",
"tpl",
",",
"option",
")",
"{",
"var",
"self",
"=",
"this",
";",
"self",
".",
"tpl",
"=",
"tpl",
";",
"option",
"=",
"S",
".",
"merge",
"(",
"defaultConfig",
",",
"option",
")",
";",
"option",
".",
"subTpls",
"=",... | XTemplate runtime. only accept tpl as function.
@example
new XTemplateRuntime(tplFunction, config);
@class KISSY.XTemplate.Runtime | [
"XTemplate",
"runtime",
".",
"only",
"accept",
"tpl",
"as",
"function",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/xtemplate/1.3.2/runtime.js#L109-L116 |
35,976 | poegroup/poe-ui-kit | index.js | initFeatureFlags | function initFeatureFlags(enabled) {
return function features(req, res, next) {
if (req.get('x-env') !== 'production') return next();
if (enabled && enabled !== req.cookies.features) res.cookie('features', enabled);
next();
};
} | javascript | function initFeatureFlags(enabled) {
return function features(req, res, next) {
if (req.get('x-env') !== 'production') return next();
if (enabled && enabled !== req.cookies.features) res.cookie('features', enabled);
next();
};
} | [
"function",
"initFeatureFlags",
"(",
"enabled",
")",
"{",
"return",
"function",
"features",
"(",
"req",
",",
"res",
",",
"next",
")",
"{",
"if",
"(",
"req",
".",
"get",
"(",
"'x-env'",
")",
"!==",
"'production'",
")",
"return",
"next",
"(",
")",
";",
... | Initialize the feature flags middleware | [
"Initialize",
"the",
"feature",
"flags",
"middleware"
] | 985daf3bfdc72c52da88affc77c8c6b41b44c6c2 | https://github.com/poegroup/poe-ui-kit/blob/985daf3bfdc72c52da88affc77c8c6b41b44c6c2/index.js#L161-L167 |
35,977 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/base-debug.js | function () {
var self = this, attrs = self.getAttrs(), attr, m;
for (attr in attrs) {
m = ON_SET + ucfirst(attr);
if (self[m]) {
// 自动绑定事件到对应函数
self.on('after' + ucfirst(attr) + 'Change', onSetAttrCh... | javascript | function () {
var self = this, attrs = self.getAttrs(), attr, m;
for (attr in attrs) {
m = ON_SET + ucfirst(attr);
if (self[m]) {
// 自动绑定事件到对应函数
self.on('after' + ucfirst(attr) + 'Change', onSetAttrCh... | [
"function",
"(",
")",
"{",
"var",
"self",
"=",
"this",
",",
"attrs",
"=",
"self",
".",
"getAttrs",
"(",
")",
",",
"attr",
",",
"m",
";",
"for",
"(",
"attr",
"in",
"attrs",
")",
"{",
"m",
"=",
"ON_SET",
"+",
"ucfirst",
"(",
"attr",
")",
";",
"... | bind attribute change event
@protected | [
"bind",
"attribute",
"change",
"event"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/base-debug.js#L100-L109 | |
35,978 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/base-debug.js | function () {
var self = this, cs = [], i, c = self.constructor, attrs = self.getAttrs();
while (c) {
cs.push(c);
c = c.superclass && c.superclass.constructor;
}
cs.reverse(); // from super class to sub class
... | javascript | function () {
var self = this, cs = [], i, c = self.constructor, attrs = self.getAttrs();
while (c) {
cs.push(c);
c = c.superclass && c.superclass.constructor;
}
cs.reverse(); // from super class to sub class
... | [
"function",
"(",
")",
"{",
"var",
"self",
"=",
"this",
",",
"cs",
"=",
"[",
"]",
",",
"i",
",",
"c",
"=",
"self",
".",
"constructor",
",",
"attrs",
"=",
"self",
".",
"getAttrs",
"(",
")",
";",
"while",
"(",
"c",
")",
"{",
"cs",
".",
"push",
... | sync attribute change event
@protected | [
"sync",
"attribute",
"change",
"event"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/base-debug.js#L114-L137 | |
35,979 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/base-debug.js | function (plugin) {
var self = this;
if (typeof plugin === 'function') {
var Plugin = plugin;
plugin = new Plugin();
} // initialize plugin
//noinspection JSUnresolvedVariable
// initialize pl... | javascript | function (plugin) {
var self = this;
if (typeof plugin === 'function') {
var Plugin = plugin;
plugin = new Plugin();
} // initialize plugin
//noinspection JSUnresolvedVariable
// initialize pl... | [
"function",
"(",
"plugin",
")",
"{",
"var",
"self",
"=",
"this",
";",
"if",
"(",
"typeof",
"plugin",
"===",
"'function'",
")",
"{",
"var",
"Plugin",
"=",
"plugin",
";",
"plugin",
"=",
"new",
"Plugin",
"(",
")",
";",
"}",
"// initialize plugin",
"//noin... | plugin a new plugins to current instance
@param {Function|Object} plugin
@chainable | [
"plugin",
"a",
"new",
"plugins",
"to",
"current",
"instance"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/base-debug.js#L143-L158 | |
35,980 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/base-debug.js | function (plugin) {
var plugins = [], self = this, isString = typeof plugin === 'string';
util.each(self.get('plugins'), function (p) {
var keep = 0, pluginId;
if (plugin) {
if (isString) {
// use... | javascript | function (plugin) {
var plugins = [], self = this, isString = typeof plugin === 'string';
util.each(self.get('plugins'), function (p) {
var keep = 0, pluginId;
if (plugin) {
if (isString) {
// use... | [
"function",
"(",
"plugin",
")",
"{",
"var",
"plugins",
"=",
"[",
"]",
",",
"self",
"=",
"this",
",",
"isString",
"=",
"typeof",
"plugin",
"===",
"'string'",
";",
"util",
".",
"each",
"(",
"self",
".",
"get",
"(",
"'plugins'",
")",
",",
"function",
... | unplug by pluginId or plugin instance.
if called with no parameter, then destroy all plugins.
@param {Object|String} [plugin]
@chainable | [
"unplug",
"by",
"pluginId",
"or",
"plugin",
"instance",
".",
"if",
"called",
"with",
"no",
"parameter",
"then",
"destroy",
"all",
"plugins",
"."
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/base-debug.js#L165-L190 | |
35,981 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/base-debug.js | function (id) {
var plugin = null;
util.each(this.get('plugins'), function (p) {
// user defined takes priority
var pluginId = p.get && p.get('pluginId') || p.pluginId;
if (pluginId === id) {
plugin = p;
... | javascript | function (id) {
var plugin = null;
util.each(this.get('plugins'), function (p) {
// user defined takes priority
var pluginId = p.get && p.get('pluginId') || p.pluginId;
if (pluginId === id) {
plugin = p;
... | [
"function",
"(",
"id",
")",
"{",
"var",
"plugin",
"=",
"null",
";",
"util",
".",
"each",
"(",
"this",
".",
"get",
"(",
"'plugins'",
")",
",",
"function",
"(",
"p",
")",
"{",
"// user defined takes priority",
"var",
"pluginId",
"=",
"p",
".",
"get",
"... | get specified plugin instance by id
@param {String} id pluginId of plugin instance
@return {Object} | [
"get",
"specified",
"plugin",
"instance",
"by",
"id"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/base-debug.js#L196-L208 | |
35,982 | kissyteam/kissy-xtemplate | lib/kissy/5.0.0-alpha.3/build/base-debug.js | onSetAttrChange | function onSetAttrChange(e) {
var self = this, method; // ignore bubbling
// ignore bubbling
if (e.target === self) {
method = self[ON_SET + e.type.slice(5).slice(0, -6)];
method.call(self, e.newVal, e);
}
} | javascript | function onSetAttrChange(e) {
var self = this, method; // ignore bubbling
// ignore bubbling
if (e.target === self) {
method = self[ON_SET + e.type.slice(5).slice(0, -6)];
method.call(self, e.newVal, e);
}
} | [
"function",
"onSetAttrChange",
"(",
"e",
")",
"{",
"var",
"self",
"=",
"this",
",",
"method",
";",
"// ignore bubbling",
"// ignore bubbling",
"if",
"(",
"e",
".",
"target",
"===",
"self",
")",
"{",
"method",
"=",
"self",
"[",
"ON_SET",
"+",
"e",
".",
... | The default set of attributes which will be available for instances of this class, and
their configuration
By default if the value is an object literal or an array it will be 'shallow' cloned, to
protect the default value.
for example:
@example
{
x:{
value: // default value
valueFn: // default function to get value
g... | [
"The",
"default",
"set",
"of",
"attributes",
"which",
"will",
"be",
"available",
"for",
"instances",
"of",
"this",
"class",
"and",
"their",
"configuration"
] | 1d454ab624c867d6a862d63dba576f8d24c6dcfc | https://github.com/kissyteam/kissy-xtemplate/blob/1d454ab624c867d6a862d63dba576f8d24c6dcfc/lib/kissy/5.0.0-alpha.3/build/base-debug.js#L398-L405 |
35,983 | craterdog-bali/js-bali-component-framework | src/abstractions/Component.js | Component | function Component(type, parameters) {
this.getTypeId = function() { return type; };
this.getParameters = function() { return parameters; };
this.setParameters = function(newParameters) { parameters = newParameters; };
return this;
} | javascript | function Component(type, parameters) {
this.getTypeId = function() { return type; };
this.getParameters = function() { return parameters; };
this.setParameters = function(newParameters) { parameters = newParameters; };
return this;
} | [
"function",
"Component",
"(",
"type",
",",
"parameters",
")",
"{",
"this",
".",
"getTypeId",
"=",
"function",
"(",
")",
"{",
"return",
"type",
";",
"}",
";",
"this",
".",
"getParameters",
"=",
"function",
"(",
")",
"{",
"return",
"parameters",
";",
"}"... | PUBLIC FUNCTIONS
This constructor creates a new component of the specified type with the optional
parameters that are used to parameterize its type.
@param {Number} type The type of component.
@param {Parameters} parameters Optional parameters used to parameterize this component.
@returns {Component} The new componen... | [
"PUBLIC",
"FUNCTIONS",
"This",
"constructor",
"creates",
"a",
"new",
"component",
"of",
"the",
"specified",
"type",
"with",
"the",
"optional",
"parameters",
"that",
"are",
"used",
"to",
"parameterize",
"its",
"type",
"."
] | 57279245e44d6ceef4debdb1d6132f48e464dcb8 | https://github.com/craterdog-bali/js-bali-component-framework/blob/57279245e44d6ceef4debdb1d6132f48e464dcb8/src/abstractions/Component.js#L29-L34 |
35,984 | apostrophecms-legacy/apostrophe-people | public/js/editor.js | updateUsername | function updateUsername() {
var $username = $el.findByName('username');
if ((!usernameFocused) && (snippet.username === undefined)) {
var username = apos.slugify($firstName.val() + $lastName.val());
$.post(self._action + '/username-unique', { username: username }, function(data) {
... | javascript | function updateUsername() {
var $username = $el.findByName('username');
if ((!usernameFocused) && (snippet.username === undefined)) {
var username = apos.slugify($firstName.val() + $lastName.val());
$.post(self._action + '/username-unique', { username: username }, function(data) {
... | [
"function",
"updateUsername",
"(",
")",
"{",
"var",
"$username",
"=",
"$el",
".",
"findByName",
"(",
"'username'",
")",
";",
"if",
"(",
"(",
"!",
"usernameFocused",
")",
"&&",
"(",
"snippet",
".",
"username",
"===",
"undefined",
")",
")",
"{",
"var",
"... | Keep updating the username suggestion until they focus that field. Of course we don't mess with existing usernames. | [
"Keep",
"updating",
"the",
"username",
"suggestion",
"until",
"they",
"focus",
"that",
"field",
".",
"Of",
"course",
"we",
"don",
"t",
"mess",
"with",
"existing",
"usernames",
"."
] | 06c359db5fdc30e6b71f005901e88da7f81e1422 | https://github.com/apostrophecms-legacy/apostrophe-people/blob/06c359db5fdc30e6b71f005901e88da7f81e1422/public/js/editor.js#L90-L101 |
35,985 | lyveminds/scamandrios | lib/marshal/index.js | getInnerType | function getInnerType(str){
var index = str.indexOf('(');
return index > 0 ? str.substring(index + 1, str.length - 1) : str;
} | javascript | function getInnerType(str){
var index = str.indexOf('(');
return index > 0 ? str.substring(index + 1, str.length - 1) : str;
} | [
"function",
"getInnerType",
"(",
"str",
")",
"{",
"var",
"index",
"=",
"str",
".",
"indexOf",
"(",
"'('",
")",
";",
"return",
"index",
">",
"0",
"?",
"str",
".",
"substring",
"(",
"index",
"+",
"1",
",",
"str",
".",
"length",
"-",
"1",
")",
":",
... | Returns the type string inside of the parentheses
@private
@memberOf Marshal | [
"Returns",
"the",
"type",
"string",
"inside",
"of",
"the",
"parentheses"
] | a1b643c68d3d88e608c610d4ce5f96e7142972cd | https://github.com/lyveminds/scamandrios/blob/a1b643c68d3d88e608c610d4ce5f96e7142972cd/lib/marshal/index.js#L44-L47 |
35,986 | lyveminds/scamandrios | lib/marshal/index.js | getCompositeTypes | function getCompositeTypes(str){
var type = getInnerType(str);
if (type === str) {
return getType(str);
}
var types = type.split(','),
i = 0, ret = [], typeLength = types.length;
for(; i < typeLength; i += 1){
ret.push( parseTypeString(types[i]) );
}
return ret;
} | javascript | function getCompositeTypes(str){
var type = getInnerType(str);
if (type === str) {
return getType(str);
}
var types = type.split(','),
i = 0, ret = [], typeLength = types.length;
for(; i < typeLength; i += 1){
ret.push( parseTypeString(types[i]) );
}
return ret;
} | [
"function",
"getCompositeTypes",
"(",
"str",
")",
"{",
"var",
"type",
"=",
"getInnerType",
"(",
"str",
")",
";",
"if",
"(",
"type",
"===",
"str",
")",
"{",
"return",
"getType",
"(",
"str",
")",
";",
"}",
"var",
"types",
"=",
"type",
".",
"split",
"... | Returns an array of types for composite columns
@private
@memberOf Marshal | [
"Returns",
"an",
"array",
"of",
"types",
"for",
"composite",
"columns"
] | a1b643c68d3d88e608c610d4ce5f96e7142972cd | https://github.com/lyveminds/scamandrios/blob/a1b643c68d3d88e608c610d4ce5f96e7142972cd/lib/marshal/index.js#L54-L68 |
35,987 | lyveminds/scamandrios | lib/marshal/index.js | parseTypeString | function parseTypeString(type){
if (type.indexOf('CompositeType') > -1){
return getCompositeTypes(type);
} else if(type.indexOf('ReversedType') > -1){
return getType(getInnerType(type));
}
else if(type.indexOf('org.apache.cassandra.db.marshal.SetType') > -1){
return getSetType(type);
}
else if(t... | javascript | function parseTypeString(type){
if (type.indexOf('CompositeType') > -1){
return getCompositeTypes(type);
} else if(type.indexOf('ReversedType') > -1){
return getType(getInnerType(type));
}
else if(type.indexOf('org.apache.cassandra.db.marshal.SetType') > -1){
return getSetType(type);
}
else if(t... | [
"function",
"parseTypeString",
"(",
"type",
")",
"{",
"if",
"(",
"type",
".",
"indexOf",
"(",
"'CompositeType'",
")",
">",
"-",
"1",
")",
"{",
"return",
"getCompositeTypes",
"(",
"type",
")",
";",
"}",
"else",
"if",
"(",
"type",
".",
"indexOf",
"(",
... | Parses the type string and decides what types to return
@private
@memberOf Marshal | [
"Parses",
"the",
"type",
"string",
"and",
"decides",
"what",
"types",
"to",
"return"
] | a1b643c68d3d88e608c610d4ce5f96e7142972cd | https://github.com/lyveminds/scamandrios/blob/a1b643c68d3d88e608c610d4ce5f96e7142972cd/lib/marshal/index.js#L75-L95 |
35,988 | lyveminds/scamandrios | lib/marshal/index.js | compositeSerializer | function compositeSerializer(serializers){
return function(vals, sliceStart){
var i = 0, buffers = [], totalLength = 0,
valLength = vals.length, val;
if(!Array.isArray(vals)){
vals = [vals];
valLength = vals.length;
}
for(; i < valLength; i += 1){
if (Array.isArray(vals[i])... | javascript | function compositeSerializer(serializers){
return function(vals, sliceStart){
var i = 0, buffers = [], totalLength = 0,
valLength = vals.length, val;
if(!Array.isArray(vals)){
vals = [vals];
valLength = vals.length;
}
for(; i < valLength; i += 1){
if (Array.isArray(vals[i])... | [
"function",
"compositeSerializer",
"(",
"serializers",
")",
"{",
"return",
"function",
"(",
"vals",
",",
"sliceStart",
")",
"{",
"var",
"i",
"=",
"0",
",",
"buffers",
"=",
"[",
"]",
",",
"totalLength",
"=",
"0",
",",
"valLength",
"=",
"vals",
".",
"len... | Creates a serializer for composite types
@private
@memberOf Marshal | [
"Creates",
"a",
"serializer",
"for",
"composite",
"types"
] | a1b643c68d3d88e608c610d4ce5f96e7142972cd | https://github.com/lyveminds/scamandrios/blob/a1b643c68d3d88e608c610d4ce5f96e7142972cd/lib/marshal/index.js#L102-L168 |
35,989 | lyveminds/scamandrios | lib/marshal/index.js | compositeDeserializer | function compositeDeserializer(deserializers){
return function(str){
var buf = new Buffer(str, 'binary'),
pos = 0, len, vals = [], i = 0;
while( pos < buf.length){
len = buf.readUInt16BE(pos);
pos += 2;
vals.push(deserializers[i](buf.slice(pos, len + pos)));
i += 1;
... | javascript | function compositeDeserializer(deserializers){
return function(str){
var buf = new Buffer(str, 'binary'),
pos = 0, len, vals = [], i = 0;
while( pos < buf.length){
len = buf.readUInt16BE(pos);
pos += 2;
vals.push(deserializers[i](buf.slice(pos, len + pos)));
i += 1;
... | [
"function",
"compositeDeserializer",
"(",
"deserializers",
")",
"{",
"return",
"function",
"(",
"str",
")",
"{",
"var",
"buf",
"=",
"new",
"Buffer",
"(",
"str",
",",
"'binary'",
")",
",",
"pos",
"=",
"0",
",",
"len",
",",
"vals",
"=",
"[",
"]",
",",
... | Creates a deserializer for composite types
@private
@memberOf Marshal | [
"Creates",
"a",
"deserializer",
"for",
"composite",
"types"
] | a1b643c68d3d88e608c610d4ce5f96e7142972cd | https://github.com/lyveminds/scamandrios/blob/a1b643c68d3d88e608c610d4ce5f96e7142972cd/lib/marshal/index.js#L175-L190 |
35,990 | netbek/penrose | lib/penrose.js | function(uri) {
const scheme = this.getScheme(uri);
if (PUBLIC === scheme || TEMPORARY === scheme) {
return '/' + this.resolvePath(uri);
}
return uri;
} | javascript | function(uri) {
const scheme = this.getScheme(uri);
if (PUBLIC === scheme || TEMPORARY === scheme) {
return '/' + this.resolvePath(uri);
}
return uri;
} | [
"function",
"(",
"uri",
")",
"{",
"const",
"scheme",
"=",
"this",
".",
"getScheme",
"(",
"uri",
")",
";",
"if",
"(",
"PUBLIC",
"===",
"scheme",
"||",
"TEMPORARY",
"===",
"scheme",
")",
"{",
"return",
"'/'",
"+",
"this",
".",
"resolvePath",
"(",
"uri"... | Returns absolute URL.
@param {string} uri
@returns {string} | [
"Returns",
"absolute",
"URL",
"."
] | d68cd2340684dc97e6093b3380de72fb85d949d5 | https://github.com/netbek/penrose/blob/d68cd2340684dc97e6093b3380de72fb85d949d5/lib/penrose.js#L412-L420 | |
35,991 | netbek/penrose | lib/penrose.js | function(styleName, path, format) {
const uri = this.getStylePath(styleName, path, format);
const scheme = this.getScheme(uri);
if (PUBLIC === scheme || TEMPORARY === scheme) {
return '/' + this.resolvePath(uri);
}
throw new Error('Scheme `' + scheme + '` not supported');
} | javascript | function(styleName, path, format) {
const uri = this.getStylePath(styleName, path, format);
const scheme = this.getScheme(uri);
if (PUBLIC === scheme || TEMPORARY === scheme) {
return '/' + this.resolvePath(uri);
}
throw new Error('Scheme `' + scheme + '` not supported');
} | [
"function",
"(",
"styleName",
",",
"path",
",",
"format",
")",
"{",
"const",
"uri",
"=",
"this",
".",
"getStylePath",
"(",
"styleName",
",",
"path",
",",
"format",
")",
";",
"const",
"scheme",
"=",
"this",
".",
"getScheme",
"(",
"uri",
")",
";",
"if"... | Returns absolute URL to derivative image.
@param {string} styleName
@param {string} path
@param {string} format
@returns {string} | [
"Returns",
"absolute",
"URL",
"to",
"derivative",
"image",
"."
] | d68cd2340684dc97e6093b3380de72fb85d949d5 | https://github.com/netbek/penrose/blob/d68cd2340684dc97e6093b3380de72fb85d949d5/lib/penrose.js#L476-L485 | |
35,992 | eface2face/meteor-observe-sequence | observe_sequence.js | function (sequenceFunc, callbacks) {
var lastSeq = null;
var activeObserveHandle = null;
// 'lastSeqArray' contains the previous value of the sequence
// we're observing. It is an array of objects with '_id' and
// 'item' fields. 'item' is the element in the array, or the
// document in the cu... | javascript | function (sequenceFunc, callbacks) {
var lastSeq = null;
var activeObserveHandle = null;
// 'lastSeqArray' contains the previous value of the sequence
// we're observing. It is an array of objects with '_id' and
// 'item' fields. 'item' is the element in the array, or the
// document in the cu... | [
"function",
"(",
"sequenceFunc",
",",
"callbacks",
")",
"{",
"var",
"lastSeq",
"=",
"null",
";",
"var",
"activeObserveHandle",
"=",
"null",
";",
"// 'lastSeqArray' contains the previous value of the sequence",
"// we're observing. It is an array of objects with '_id' and",
"// ... | A mechanism similar to cursor.observe which receives a reactive function returning a sequence type and firing appropriate callbacks when the value changes. @param sequenceFunc {Function} a reactive function returning a sequence type. The currently supported sequence types are: Array, Cursor, and null. @param callback... | [
"A",
"mechanism",
"similar",
"to",
"cursor",
".",
"observe",
"which",
"receives",
"a",
"reactive",
"function",
"returning",
"a",
"sequence",
"type",
"and",
"firing",
"appropriate",
"callbacks",
"when",
"the",
"value",
"changes",
"."
] | df002d472b858c441700600facdea4154a26f77f | https://github.com/eface2face/meteor-observe-sequence/blob/df002d472b858c441700600facdea4154a26f77f/observe_sequence.js#L150-L214 | |
35,993 | eface2face/meteor-observe-sequence | observe_sequence.js | function (seq) {
if (!seq) {
return [];
} else if (seq instanceof Array) {
return seq;
} else if (isStoreCursor(seq)) {
return seq.fetch();
} else {
throw badSequenceError();
}
} | javascript | function (seq) {
if (!seq) {
return [];
} else if (seq instanceof Array) {
return seq;
} else if (isStoreCursor(seq)) {
return seq.fetch();
} else {
throw badSequenceError();
}
} | [
"function",
"(",
"seq",
")",
"{",
"if",
"(",
"!",
"seq",
")",
"{",
"return",
"[",
"]",
";",
"}",
"else",
"if",
"(",
"seq",
"instanceof",
"Array",
")",
"{",
"return",
"seq",
";",
"}",
"else",
"if",
"(",
"isStoreCursor",
"(",
"seq",
")",
")",
"{"... | Fetch the items of `seq` into an array, where `seq` is of one of the sequence types accepted by `observe`. If `seq` is a cursor, a dependency is established. | [
"Fetch",
"the",
"items",
"of",
"seq",
"into",
"an",
"array",
"where",
"seq",
"is",
"of",
"one",
"of",
"the",
"sequence",
"types",
"accepted",
"by",
"observe",
".",
"If",
"seq",
"is",
"a",
"cursor",
"a",
"dependency",
"is",
"established",
"."
] | df002d472b858c441700600facdea4154a26f77f | https://github.com/eface2face/meteor-observe-sequence/blob/df002d472b858c441700600facdea4154a26f77f/observe_sequence.js#L219-L229 | |
35,994 | KleeGroup/focus-notifications | src/index.js | NotificationCenterDev | function NotificationCenterDev({ iconName, onSingleClick, store, panelFooter, panelHeader }) {
return (
<Provider store={store}>
<div>
<NotificationCenter
iconName={iconName}
hasAddNotif={false}
onSingleClick={onSingleCl... | javascript | function NotificationCenterDev({ iconName, onSingleClick, store, panelFooter, panelHeader }) {
return (
<Provider store={store}>
<div>
<NotificationCenter
iconName={iconName}
hasAddNotif={false}
onSingleClick={onSingleCl... | [
"function",
"NotificationCenterDev",
"(",
"{",
"iconName",
",",
"onSingleClick",
",",
"store",
",",
"panelFooter",
",",
"panelHeader",
"}",
")",
"{",
"return",
"(",
"<",
"Provider",
"store",
"=",
"{",
"store",
"}",
">",
"\n ",
"<",
"div",
">",
"... | Render notification center in dev mode.
@param {object} props props.
@returns {JsxElement} element. | [
"Render",
"notification",
"center",
"in",
"dev",
"mode",
"."
] | b9a529264b625a12c3d8d479f839f36f77b674f6 | https://github.com/KleeGroup/focus-notifications/blob/b9a529264b625a12c3d8d479f839f36f77b674f6/src/index.js#L19-L34 |
35,995 | KleeGroup/focus-notifications | src/index.js | NotificationCenterProd | function NotificationCenterProd({ iconName, onSingleClick, store, panelFooter, panelHeader }) {
return (
<Provider store={store}>
<NotificationCenter
iconName={iconName}
hasAddNotif={false}
onSingleClick={onSingleClick}
panelHeader=... | javascript | function NotificationCenterProd({ iconName, onSingleClick, store, panelFooter, panelHeader }) {
return (
<Provider store={store}>
<NotificationCenter
iconName={iconName}
hasAddNotif={false}
onSingleClick={onSingleClick}
panelHeader=... | [
"function",
"NotificationCenterProd",
"(",
"{",
"iconName",
",",
"onSingleClick",
",",
"store",
",",
"panelFooter",
",",
"panelHeader",
"}",
")",
"{",
"return",
"(",
"<",
"Provider",
"store",
"=",
"{",
"store",
"}",
">",
"\n ",
"<",
"NotificationCen... | Render notification center in production mode.
@param {object} props props.
@returns {JsxElement} element. | [
"Render",
"notification",
"center",
"in",
"production",
"mode",
"."
] | b9a529264b625a12c3d8d479f839f36f77b674f6 | https://github.com/KleeGroup/focus-notifications/blob/b9a529264b625a12c3d8d479f839f36f77b674f6/src/index.js#L53-L65 |
35,996 | Automattic/wpcom-unpublished | lib/site.post.subscriber.js | Subscriber | function Subscriber( pid, sid, wpcom ) {
if ( ! sid ) {
throw new Error( '`side id` is not correctly defined' );
}
if ( ! pid ) {
throw new Error( '`post id` is not correctly defined' );
}
if ( ! ( this instanceof Subscriber ) ) {
return new Subscriber( pid, sid, wpcom );
}
this.wpcom = wpcom;
this._pi... | javascript | function Subscriber( pid, sid, wpcom ) {
if ( ! sid ) {
throw new Error( '`side id` is not correctly defined' );
}
if ( ! pid ) {
throw new Error( '`post id` is not correctly defined' );
}
if ( ! ( this instanceof Subscriber ) ) {
return new Subscriber( pid, sid, wpcom );
}
this.wpcom = wpcom;
this._pi... | [
"function",
"Subscriber",
"(",
"pid",
",",
"sid",
",",
"wpcom",
")",
"{",
"if",
"(",
"!",
"sid",
")",
"{",
"throw",
"new",
"Error",
"(",
"'`side id` is not correctly defined'",
")",
";",
"}",
"if",
"(",
"!",
"pid",
")",
"{",
"throw",
"new",
"Error",
... | `Subscriber` constructor.
@param {String} pid - post identifier
@param {String} sid - site identifier
@param {WPCOM} wpcom - wpcom instance
@api public | [
"Subscriber",
"constructor",
"."
] | 9d3112f0e647cf2a9d5a9aa5fc1d7cda66ef185e | https://github.com/Automattic/wpcom-unpublished/blob/9d3112f0e647cf2a9d5a9aa5fc1d7cda66ef185e/lib/site.post.subscriber.js#L10-L26 |
35,997 | cainus/detour | route.js | Route | function Route(path, resource, options) {
options = options || {};
this.path = path;
this.resource = resource;
this.regexp = pathRegexp(path,
this.keys = [],
options.sensitive,
options.strict);
} | javascript | function Route(path, resource, options) {
options = options || {};
this.path = path;
this.resource = resource;
this.regexp = pathRegexp(path,
this.keys = [],
options.sensitive,
options.strict);
} | [
"function",
"Route",
"(",
"path",
",",
"resource",
",",
"options",
")",
"{",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"this",
".",
"path",
"=",
"path",
";",
"this",
".",
"resource",
"=",
"resource",
";",
"this",
".",
"regexp",
"=",
"pathRegexp... | Initialize `Route` with the given HTTP `path`, `resource`,
and `options`.
Options:
- `sensitive` enable case-sensitive routes
- `strict` enable strict matching for trailing slashes
@param {String} path
@param {Object} resource
@param {Object} options
@api private | [
"Initialize",
"Route",
"with",
"the",
"given",
"HTTP",
"path",
"resource",
"and",
"options",
"."
] | ee7a1b33ed61f7da3defa6e23cea65e8babbda0e | https://github.com/cainus/detour/blob/ee7a1b33ed61f7da3defa6e23cea65e8babbda0e/route.js#L25-L33 |
35,998 | goliatone/core.io-pubsub-mqtt | lib/init.js | $createClient | function $createClient(options) {
/*
* Ensure we have default options.
*/
options = extend({}, {}, options);
const { url, transport } = options;
if (_clients[url]) {
return _clients[url];
}
const client = mqtt.connect(url, transport);
... | javascript | function $createClient(options) {
/*
* Ensure we have default options.
*/
options = extend({}, {}, options);
const { url, transport } = options;
if (_clients[url]) {
return _clients[url];
}
const client = mqtt.connect(url, transport);
... | [
"function",
"$createClient",
"(",
"options",
")",
"{",
"/*\n * Ensure we have default options.\n */",
"options",
"=",
"extend",
"(",
"{",
"}",
",",
"{",
"}",
",",
"options",
")",
";",
"const",
"{",
"url",
",",
"transport",
"}",
"=",
"options",
... | Factory function to create MQTT client.
The default factory creates a regular MQTT.js
client.
@param {Object} options MQTT configuration object | [
"Factory",
"function",
"to",
"create",
"MQTT",
"client",
".",
"The",
"default",
"factory",
"creates",
"a",
"regular",
"MQTT",
".",
"js",
"client",
"."
] | aecb67a4d2715c712292ca61f8722eb62ab21f88 | https://github.com/goliatone/core.io-pubsub-mqtt/blob/aecb67a4d2715c712292ca61f8722eb62ab21f88/lib/init.js#L39-L56 |
35,999 | JS-DevTools/browserify-banner | lib/index.js | browserifyBanner | function browserifyBanner (browserify, options) {
options = options || {};
if (typeof browserify === "string") {
// browserify-banner was loaded as a transform, not a plug-in.
// So return a stream that does nothing.
return through();
}
browserify.on("package", setPackageOption);
browserify.on("... | javascript | function browserifyBanner (browserify, options) {
options = options || {};
if (typeof browserify === "string") {
// browserify-banner was loaded as a transform, not a plug-in.
// So return a stream that does nothing.
return through();
}
browserify.on("package", setPackageOption);
browserify.on("... | [
"function",
"browserifyBanner",
"(",
"browserify",
",",
"options",
")",
"{",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"if",
"(",
"typeof",
"browserify",
"===",
"\"string\"",
")",
"{",
"// browserify-banner was loaded as a transform, not a plug-in.",
"// So retu... | Browserify plugin that adds a banner comment block to the top of the bundle.
@param {Browserify} browserify - The Browserify instance
@param {object} options - The plugin options | [
"Browserify",
"plugin",
"that",
"adds",
"a",
"banner",
"comment",
"block",
"to",
"the",
"top",
"of",
"the",
"bundle",
"."
] | f30b0ecead5a6937e9aa7a2542f225b9f7c56902 | https://github.com/JS-DevTools/browserify-banner/blob/f30b0ecead5a6937e9aa7a2542f225b9f7c56902/lib/index.js#L20-L113 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.