id int32 0 58k | repo stringlengths 5 67 | path stringlengths 4 116 | func_name stringlengths 0 58 | original_string stringlengths 52 373k | language stringclasses 1
value | code stringlengths 52 373k | code_tokens list | docstring stringlengths 4 11.8k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 86 226 |
|---|---|---|---|---|---|---|---|---|---|---|---|
36,500 | avoidwork/abaaso | lib/abaaso.js | function ( arg, delimiter, header ) {
delimiter = delimiter || ",";
header = ( header !== false );
var obj = json.decode( arg, true ) || arg,
result = "",
prepare;
// Prepares input based on CSV rules
prepare = function ( input ) {
var output;
if ( input instanceof Array ) {
ou... | javascript | function ( arg, delimiter, header ) {
delimiter = delimiter || ",";
header = ( header !== false );
var obj = json.decode( arg, true ) || arg,
result = "",
prepare;
// Prepares input based on CSV rules
prepare = function ( input ) {
var output;
if ( input instanceof Array ) {
ou... | [
"function",
"(",
"arg",
",",
"delimiter",
",",
"header",
")",
"{",
"delimiter",
"=",
"delimiter",
"||",
"\",\"",
";",
"header",
"=",
"(",
"header",
"!==",
"false",
")",
";",
"var",
"obj",
"=",
"json",
".",
"decode",
"(",
"arg",
",",
"true",
")",
"|... | Transforms JSON to CSV
@method csv
@param {String} arg JSON string to transform
@param {String} delimiter [Optional] Character to separate fields
@param {Boolean} header [Optional] False to not include field names as first row
@return {String} CSV string | [
"Transforms",
"JSON",
"to",
"CSV"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L6200-L6255 | |
36,501 | avoidwork/abaaso | lib/abaaso.js | function ( arg, silent ) {
try {
return JSON.parse( arg );
}
catch ( e ) {
if ( silent !== true ) {
utility.error( e, arguments, this );
}
return undefined;
}
} | javascript | function ( arg, silent ) {
try {
return JSON.parse( arg );
}
catch ( e ) {
if ( silent !== true ) {
utility.error( e, arguments, this );
}
return undefined;
}
} | [
"function",
"(",
"arg",
",",
"silent",
")",
"{",
"try",
"{",
"return",
"JSON",
".",
"parse",
"(",
"arg",
")",
";",
"}",
"catch",
"(",
"e",
")",
"{",
"if",
"(",
"silent",
"!==",
"true",
")",
"{",
"utility",
".",
"error",
"(",
"e",
",",
"argument... | Decodes the argument
@method decode
@param {String} arg String to parse
@param {Boolean} silent [Optional] Silently fail
@return {Mixed} Entity resulting from parsing JSON, or undefined | [
"Decodes",
"the",
"argument"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L6265-L6276 | |
36,502 | avoidwork/abaaso | lib/abaaso.js | LRU | function LRU ( max ) {
this.cache = {};
this.max = max || 1000;
this.first = null;
this.last = null;
this.length = 0;
} | javascript | function LRU ( max ) {
this.cache = {};
this.max = max || 1000;
this.first = null;
this.last = null;
this.length = 0;
} | [
"function",
"LRU",
"(",
"max",
")",
"{",
"this",
".",
"cache",
"=",
"{",
"}",
";",
"this",
".",
"max",
"=",
"max",
"||",
"1000",
";",
"this",
".",
"first",
"=",
"null",
";",
"this",
".",
"last",
"=",
"null",
";",
"this",
".",
"length",
"=",
"... | Least Recently Used cache
@constructor
@param {Number} max [Optional] Max size of cache, default is 1000 | [
"Least",
"Recently",
"Used",
"cache"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L6412-L6418 |
36,503 | avoidwork/abaaso | lib/abaaso.js | function () {
var a = array.cast( arguments ),
t = a.pop(),
P = array.chunk( a, 2 ),
n = P.length,
c, S0, Q0, Q1, Q2, C0, C1, C2, C3;
if ( n < 2 || n > 4 ) {
throw new Error( label.error.invalidArguments );
}
// Setting variables
c = [];
S0 = 1 - t;
Q0 = math.sqr( S0 );
Q1 ... | javascript | function () {
var a = array.cast( arguments ),
t = a.pop(),
P = array.chunk( a, 2 ),
n = P.length,
c, S0, Q0, Q1, Q2, C0, C1, C2, C3;
if ( n < 2 || n > 4 ) {
throw new Error( label.error.invalidArguments );
}
// Setting variables
c = [];
S0 = 1 - t;
Q0 = math.sqr( S0 );
Q1 ... | [
"function",
"(",
")",
"{",
"var",
"a",
"=",
"array",
".",
"cast",
"(",
"arguments",
")",
",",
"t",
"=",
"a",
".",
"pop",
"(",
")",
",",
"P",
"=",
"array",
".",
"chunk",
"(",
"a",
",",
"2",
")",
",",
"n",
"=",
"P",
".",
"length",
",",
"c",... | Generates bezier curve coordinates for up to 4 points, last parameter is `t`
Two point example: (0, 10, 0, 0, 1) means move straight up
@method bezier
@return {Array} Coordinates | [
"Generates",
"bezier",
"curve",
"coordinates",
"for",
"up",
"to",
"4",
"points",
"last",
"parameter",
"is",
"t"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L6555-L6594 | |
36,504 | avoidwork/abaaso | lib/abaaso.js | function ( a, b ) {
return Math.sqrt( math.sqr( b[0] - a[0] ) + math.sqr( b[1] - a[1] ) );
} | javascript | function ( a, b ) {
return Math.sqrt( math.sqr( b[0] - a[0] ) + math.sqr( b[1] - a[1] ) );
} | [
"function",
"(",
"a",
",",
"b",
")",
"{",
"return",
"Math",
".",
"sqrt",
"(",
"math",
".",
"sqr",
"(",
"b",
"[",
"0",
"]",
"-",
"a",
"[",
"0",
"]",
")",
"+",
"math",
".",
"sqr",
"(",
"b",
"[",
"1",
"]",
"-",
"a",
"[",
"1",
"]",
")",
"... | Finds the distance between 2 Arrays of coordinates
@method dist
@param {Array} a Coordinates [x, y]
@param {Array} b Coordinates [x, y]
@return {Number} Distance between `a` & `b` | [
"Finds",
"the",
"distance",
"between",
"2",
"Arrays",
"of",
"coordinates"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L6604-L6606 | |
36,505 | avoidwork/abaaso | lib/abaaso.js | function ( target, arg ) {
try {
target.postMessage( arg, "*" );
}
catch ( e ) {
utility.error( e, arguments, this );
}
return target;
} | javascript | function ( target, arg ) {
try {
target.postMessage( arg, "*" );
}
catch ( e ) {
utility.error( e, arguments, this );
}
return target;
} | [
"function",
"(",
"target",
",",
"arg",
")",
"{",
"try",
"{",
"target",
".",
"postMessage",
"(",
"arg",
",",
"\"*\"",
")",
";",
"}",
"catch",
"(",
"e",
")",
"{",
"utility",
".",
"error",
"(",
"e",
",",
"arguments",
",",
"this",
")",
";",
"}",
"r... | Posts a message to the target
@method send
@param {Object} target Object to receive message
@param {Mixed} arg Entity to send as message
@return {Object} target | [
"Posts",
"a",
"message",
"to",
"the",
"target"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L6642-L6651 | |
36,506 | avoidwork/abaaso | lib/abaaso.js | function ( fn, state ) {
state = state || "all";
return observer.add( global, "message", fn, "message", global, state );
} | javascript | function ( fn, state ) {
state = state || "all";
return observer.add( global, "message", fn, "message", global, state );
} | [
"function",
"(",
"fn",
",",
"state",
")",
"{",
"state",
"=",
"state",
"||",
"\"all\"",
";",
"return",
"observer",
".",
"add",
"(",
"global",
",",
"\"message\"",
",",
"fn",
",",
"\"message\"",
",",
"global",
",",
"state",
")",
";",
"}"
] | Sets a handler for recieving a message
@method recv
@param {Function} fn Callback function
@return {Object} abaaso | [
"Sets",
"a",
"handler",
"for",
"recieving",
"a",
"message"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L6660-L6664 | |
36,507 | avoidwork/abaaso | lib/abaaso.js | function ( arg ) {
var type = typeof arg;
if ( type === "object" ) {
var v = document[mouse.view],
x = arg.pageX ? arg.pageX : ( v.scrollLeft + arg.clientX ),
y = arg.pageY ? arg.pageY : ( v.scrollTop + arg.clientY ),
c = false;
if ( mouse.pos.x !== x ) {
c = true;
}
$.mouse... | javascript | function ( arg ) {
var type = typeof arg;
if ( type === "object" ) {
var v = document[mouse.view],
x = arg.pageX ? arg.pageX : ( v.scrollLeft + arg.clientX ),
y = arg.pageY ? arg.pageY : ( v.scrollTop + arg.clientY ),
c = false;
if ( mouse.pos.x !== x ) {
c = true;
}
$.mouse... | [
"function",
"(",
"arg",
")",
"{",
"var",
"type",
"=",
"typeof",
"arg",
";",
"if",
"(",
"type",
"===",
"\"object\"",
")",
"{",
"var",
"v",
"=",
"document",
"[",
"mouse",
".",
"view",
"]",
",",
"x",
"=",
"arg",
".",
"pageX",
"?",
"arg",
".",
"pag... | Enables or disables mouse co-ordinate tracking
@method track
@param {Mixed} arg Boolean to enable/disable tracking, or Mouse Event
@return {Object} $.mouse | [
"Enables",
"or",
"disables",
"mouse",
"co",
"-",
"ordinate",
"tracking"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L6692-L6727 | |
36,508 | avoidwork/abaaso | lib/abaaso.js | function ( num1, num2 ) {
if ( isNaN( num1 ) || isNaN( num2 ) ) {
throw new Error( label.error.expectedNumber );
}
return Math.abs( num1 - num2 );
} | javascript | function ( num1, num2 ) {
if ( isNaN( num1 ) || isNaN( num2 ) ) {
throw new Error( label.error.expectedNumber );
}
return Math.abs( num1 - num2 );
} | [
"function",
"(",
"num1",
",",
"num2",
")",
"{",
"if",
"(",
"isNaN",
"(",
"num1",
")",
"||",
"isNaN",
"(",
"num2",
")",
")",
"{",
"throw",
"new",
"Error",
"(",
"label",
".",
"error",
".",
"expectedNumber",
")",
";",
"}",
"return",
"Math",
".",
"ab... | Returns the difference of arg
@method odd
@param {Number} arg Number to compare
@return {Number} The absolute difference | [
"Returns",
"the",
"difference",
"of",
"arg"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L6739-L6745 | |
36,509 | avoidwork/abaaso | lib/abaaso.js | function ( arg, delimiter, every ) {
if ( isNaN( arg ) ) {
throw new Error( label.error.expectedNumber );
}
arg = arg.toString();
delimiter = delimiter || ",";
every = every || 3;
var d = arg.indexOf( "." ) > -1 ? "." + arg.replace( regex.number_format_1, "" ) : "",
a = arg.replace(... | javascript | function ( arg, delimiter, every ) {
if ( isNaN( arg ) ) {
throw new Error( label.error.expectedNumber );
}
arg = arg.toString();
delimiter = delimiter || ",";
every = every || 3;
var d = arg.indexOf( "." ) > -1 ? "." + arg.replace( regex.number_format_1, "" ) : "",
a = arg.replace(... | [
"function",
"(",
"arg",
",",
"delimiter",
",",
"every",
")",
"{",
"if",
"(",
"isNaN",
"(",
"arg",
")",
")",
"{",
"throw",
"new",
"Error",
"(",
"label",
".",
"error",
".",
"expectedNumber",
")",
";",
"}",
"arg",
"=",
"arg",
".",
"toString",
"(",
"... | Formats a Number to a delimited String
@method format
@param {Number} arg Number to format
@param {String} delimiter [Optional] String to delimit the Number with
@param {String} every [Optional] Position to insert the delimiter, default is 3
@return {String} Number represented as a comma delimit... | [
"Formats",
"a",
"Number",
"to",
"a",
"delimited",
"String"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L6767-L6794 | |
36,510 | avoidwork/abaaso | lib/abaaso.js | function ( arg, direction ) {
arg = number.parse( arg );
if ( direction === undefined || string.isEmpty( direction ) ) {
return number.parse( arg.toFixed( 0 ) );
}
else if ( regex.down.test( direction ) ) {
return ~~( arg );
}
else {
return Math.ceil( arg );
}
} | javascript | function ( arg, direction ) {
arg = number.parse( arg );
if ( direction === undefined || string.isEmpty( direction ) ) {
return number.parse( arg.toFixed( 0 ) );
}
else if ( regex.down.test( direction ) ) {
return ~~( arg );
}
else {
return Math.ceil( arg );
}
} | [
"function",
"(",
"arg",
",",
"direction",
")",
"{",
"arg",
"=",
"number",
".",
"parse",
"(",
"arg",
")",
";",
"if",
"(",
"direction",
"===",
"undefined",
"||",
"string",
".",
"isEmpty",
"(",
"direction",
")",
")",
"{",
"return",
"number",
".",
"parse... | Rounds a number up or down
@method round
@param {Number} arg Number to round
@param {String} direction [Optional] "up" or "down"
@return {Number} Rounded interger | [
"Rounds",
"a",
"number",
"up",
"or",
"down"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L6853-L6865 | |
36,511 | avoidwork/abaaso | lib/abaaso.js | function ( obj ) {
var methods = [
["fire", function () { return observer.fire.apply( observer, [this].concat( array.cast( arguments ) ) ); }],
["listeners", function ( event ) { return observer.list(this, event ); }],
["on", function ( event, listener, id, scope, standby ) { return observer.add(... | javascript | function ( obj ) {
var methods = [
["fire", function () { return observer.fire.apply( observer, [this].concat( array.cast( arguments ) ) ); }],
["listeners", function ( event ) { return observer.list(this, event ); }],
["on", function ( event, listener, id, scope, standby ) { return observer.add(... | [
"function",
"(",
"obj",
")",
"{",
"var",
"methods",
"=",
"[",
"[",
"\"fire\"",
",",
"function",
"(",
")",
"{",
"return",
"observer",
".",
"fire",
".",
"apply",
"(",
"observer",
",",
"[",
"this",
"]",
".",
"concat",
"(",
"array",
".",
"cast",
"(",
... | Decorates `obj` with `observer` methods
@method decorate
@param {Object} obj Object to decorate
@return {Object} Object to decorate | [
"Decorates",
"obj",
"with",
"observer",
"methods"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L7019-L7033 | |
36,512 | avoidwork/abaaso | lib/abaaso.js | function ( obj, event ) {
var quit = false,
a = array.remove( array.cast( arguments ), 0, 1 ),
o, s, log, list;
if ( observer.ignore ) {
return obj;
}
o = observer.id( obj );
if ( o === undefined || event === undefined ) {
throw new Error( label.error.invalidArguments );
}
if ( ob... | javascript | function ( obj, event ) {
var quit = false,
a = array.remove( array.cast( arguments ), 0, 1 ),
o, s, log, list;
if ( observer.ignore ) {
return obj;
}
o = observer.id( obj );
if ( o === undefined || event === undefined ) {
throw new Error( label.error.invalidArguments );
}
if ( ob... | [
"function",
"(",
"obj",
",",
"event",
")",
"{",
"var",
"quit",
"=",
"false",
",",
"a",
"=",
"array",
".",
"remove",
"(",
"array",
".",
"cast",
"(",
"arguments",
")",
",",
"0",
",",
"1",
")",
",",
"o",
",",
"s",
",",
"log",
",",
"list",
";",
... | Fires an event
@method fire
@param {Mixed} obj Primitive
@param {String} event Event, or Events being fired ( comma delimited supported )
@return {Mixed} Primitive | [
"Fires",
"an",
"event"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L7054-L7104 | |
36,513 | avoidwork/abaaso | lib/abaaso.js | function ( arg ) {
var id;
if ( arg === global ) {
id = "window";
}
else if ( !server && arg === document ) {
id = "document";
}
else if ( !server && arg === document.body ) {
id = "body";
}
else {
utility.genId( arg );
id = arg.id || ( typeof arg.toString === "function" ? arg.toString()... | javascript | function ( arg ) {
var id;
if ( arg === global ) {
id = "window";
}
else if ( !server && arg === document ) {
id = "document";
}
else if ( !server && arg === document.body ) {
id = "body";
}
else {
utility.genId( arg );
id = arg.id || ( typeof arg.toString === "function" ? arg.toString()... | [
"function",
"(",
"arg",
")",
"{",
"var",
"id",
";",
"if",
"(",
"arg",
"===",
"global",
")",
"{",
"id",
"=",
"\"window\"",
";",
"}",
"else",
"if",
"(",
"!",
"server",
"&&",
"arg",
"===",
"document",
")",
"{",
"id",
"=",
"\"document\"",
";",
"}",
... | Gets the Observer id of arg
@method id
@param {Mixed} Object or String
@return {String} Observer id | [
"Gets",
"the",
"Observer",
"id",
"of",
"arg"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L7113-L7131 | |
36,514 | avoidwork/abaaso | lib/abaaso.js | function ( obj, event, target ) {
var l = target || observer.listeners,
o = observer.id( obj ),
r;
if ( l[o] === undefined && event === undefined ) {
r = {};
}
else if ( l[o] !== undefined && ( event === undefined || string.isEmpty( event ) ) ) {
r = l[o];
}
else if ( l[o] !== undefined &... | javascript | function ( obj, event, target ) {
var l = target || observer.listeners,
o = observer.id( obj ),
r;
if ( l[o] === undefined && event === undefined ) {
r = {};
}
else if ( l[o] !== undefined && ( event === undefined || string.isEmpty( event ) ) ) {
r = l[o];
}
else if ( l[o] !== undefined &... | [
"function",
"(",
"obj",
",",
"event",
",",
"target",
")",
"{",
"var",
"l",
"=",
"target",
"||",
"observer",
".",
"listeners",
",",
"o",
"=",
"observer",
".",
"id",
"(",
"obj",
")",
",",
"r",
";",
"if",
"(",
"l",
"[",
"o",
"]",
"===",
"undefined... | Gets the listeners for an event
@method list
@param {Mixed} obj Primitive
@param {String} event Event being queried
@param {Object} target [Optional] Listeners collection to access, default is `observer.listeners`
@return {Mixed} Primitive | [
"Gets",
"the",
"listeners",
"for",
"an",
"event"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L7142-L7161 | |
36,515 | avoidwork/abaaso | lib/abaaso.js | function ( obj, event, fn, id, scope, st ) {
var uuid = id || utility.genId();
scope = scope || obj;
st = st || state.getCurrent();
if ( obj === undefined || event === null || event === undefined || typeof fn !== "function" ) {
throw new Error( label.error.invalidArguments );
}
observer.add( obj... | javascript | function ( obj, event, fn, id, scope, st ) {
var uuid = id || utility.genId();
scope = scope || obj;
st = st || state.getCurrent();
if ( obj === undefined || event === null || event === undefined || typeof fn !== "function" ) {
throw new Error( label.error.invalidArguments );
}
observer.add( obj... | [
"function",
"(",
"obj",
",",
"event",
",",
"fn",
",",
"id",
",",
"scope",
",",
"st",
")",
"{",
"var",
"uuid",
"=",
"id",
"||",
"utility",
".",
"genId",
"(",
")",
";",
"scope",
"=",
"scope",
"||",
"obj",
";",
"st",
"=",
"st",
"||",
"state",
".... | Adds a listener for a single execution
@method once
@param {Mixed} obj Primitive
@param {String} event Event being fired
@param {Function} fn Event handler
@param {String} id [Optional / Recommended] The id for the listener
@param {String} scope [Optional / Recommended] The id of the object or el... | [
"Adds",
"a",
"listener",
"for",
"a",
"single",
"execution"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L7175-L7191 | |
36,516 | avoidwork/abaaso | lib/abaaso.js | function ( arg ) {
if ( arg === true ) {
observer.silent = arg;
}
else if ( arg === false ) {
observer.silent = arg;
array.each( observer.queue, function ( i ) {
observer.fire( i.obj, i.event );
});
observer.queue = [];
}
return arg;
} | javascript | function ( arg ) {
if ( arg === true ) {
observer.silent = arg;
}
else if ( arg === false ) {
observer.silent = arg;
array.each( observer.queue, function ( i ) {
observer.fire( i.obj, i.event );
});
observer.queue = [];
}
return arg;
} | [
"function",
"(",
"arg",
")",
"{",
"if",
"(",
"arg",
"===",
"true",
")",
"{",
"observer",
".",
"silent",
"=",
"arg",
";",
"}",
"else",
"if",
"(",
"arg",
"===",
"false",
")",
"{",
"observer",
".",
"silent",
"=",
"arg",
";",
"array",
".",
"each",
... | Pauses observer events, and queues them
@method pause
@param {Boolean} arg Boolean indicating if events will be queued
@return {Boolean} Current setting | [
"Pauses",
"observer",
"events",
"and",
"queues",
"them"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L7200-L7215 | |
36,517 | avoidwork/abaaso | lib/abaaso.js | function ( obj ) {
return obj ? observer.clisteners[observer.id( obj )] : array.keys( observer.clisteners ).length;
} | javascript | function ( obj ) {
return obj ? observer.clisteners[observer.id( obj )] : array.keys( observer.clisteners ).length;
} | [
"function",
"(",
"obj",
")",
"{",
"return",
"obj",
"?",
"observer",
".",
"clisteners",
"[",
"observer",
".",
"id",
"(",
"obj",
")",
"]",
":",
"array",
".",
"keys",
"(",
"observer",
".",
"clisteners",
")",
".",
"length",
";",
"}"
] | Returns the sum of active listeners for one or all Objects
@method sum
@param {Mixed} obj [Optional] Entity
@return {Object} Object with total listeners per event | [
"Returns",
"the",
"sum",
"of",
"active",
"listeners",
"for",
"one",
"or",
"all",
"Objects"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L7312-L7314 | |
36,518 | avoidwork/abaaso | lib/abaaso.js | function ( obj, event, st ) {
observer.alisteners[obj][event][st] = array.cast( observer.listeners[obj][event][st] );
} | javascript | function ( obj, event, st ) {
observer.alisteners[obj][event][st] = array.cast( observer.listeners[obj][event][st] );
} | [
"function",
"(",
"obj",
",",
"event",
",",
"st",
")",
"{",
"observer",
".",
"alisteners",
"[",
"obj",
"]",
"[",
"event",
"]",
"[",
"st",
"]",
"=",
"array",
".",
"cast",
"(",
"observer",
".",
"listeners",
"[",
"obj",
"]",
"[",
"event",
"]",
"[",
... | Syncs `alisteners` with `listeners`
@method sync
@param {String} obj Object ID
@param {String} event Event
@param {String} st Application state
@return {Undefined} undefined | [
"Syncs",
"alisteners",
"with",
"listeners"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L7325-L7327 | |
36,519 | avoidwork/abaaso | lib/abaaso.js | function ( obj, all ) {
all = ( all === true );
var result;
if ( all ) {
result = string.explode( obj, " " ).map( function ( i ) {
return i.charAt( 0 ).toUpperCase() + i.slice( 1 );
}).join(" ");
}
else {
result = obj.charAt( 0 ).toUpperCase() + obj.slice( 1 );
}
return result;
} | javascript | function ( obj, all ) {
all = ( all === true );
var result;
if ( all ) {
result = string.explode( obj, " " ).map( function ( i ) {
return i.charAt( 0 ).toUpperCase() + i.slice( 1 );
}).join(" ");
}
else {
result = obj.charAt( 0 ).toUpperCase() + obj.slice( 1 );
}
return result;
} | [
"function",
"(",
"obj",
",",
"all",
")",
"{",
"all",
"=",
"(",
"all",
"===",
"true",
")",
";",
"var",
"result",
";",
"if",
"(",
"all",
")",
"{",
"result",
"=",
"string",
".",
"explode",
"(",
"obj",
",",
"\" \"",
")",
".",
"map",
"(",
"function"... | Capitalizes the String
@method capitalize
@param {String} obj String to capitalize
@param {Boolean} all [Optional] Capitalize each word
@return {String} Capitalized String | [
"Capitalizes",
"the",
"String"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L8666-L8681 | |
36,520 | avoidwork/abaaso | lib/abaaso.js | function ( obj, camel ) {
var result = string.trim( obj ).replace( /\s+/g, "-" );
if ( camel === true ) {
result = result.replace( /([A-Z])/g, "-$1" ).toLowerCase();
}
return result;
} | javascript | function ( obj, camel ) {
var result = string.trim( obj ).replace( /\s+/g, "-" );
if ( camel === true ) {
result = result.replace( /([A-Z])/g, "-$1" ).toLowerCase();
}
return result;
} | [
"function",
"(",
"obj",
",",
"camel",
")",
"{",
"var",
"result",
"=",
"string",
".",
"trim",
"(",
"obj",
")",
".",
"replace",
"(",
"/",
"\\s+",
"/",
"g",
",",
"\"-\"",
")",
";",
"if",
"(",
"camel",
"===",
"true",
")",
"{",
"result",
"=",
"resul... | Replaces all spaces in a string with dashes
@method hyphenate
@param {String} obj String to hyphenate
@param {Boolean} camel [Optional] Hyphenate camelCase
@return {String} String with dashes instead of spaces | [
"Replaces",
"all",
"spaces",
"in",
"a",
"string",
"with",
"dashes"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L8716-L8724 | |
36,521 | avoidwork/abaaso | lib/abaaso.js | function ( obj ) {
return obj.replace( /oe?s$/, "o" ).replace( /ies$/, "y" ).replace( /ses$/, "se" ).replace( /s$/, "" );
} | javascript | function ( obj ) {
return obj.replace( /oe?s$/, "o" ).replace( /ies$/, "y" ).replace( /ses$/, "se" ).replace( /s$/, "" );
} | [
"function",
"(",
"obj",
")",
"{",
"return",
"obj",
".",
"replace",
"(",
"/",
"oe?s$",
"/",
",",
"\"o\"",
")",
".",
"replace",
"(",
"/",
"ies$",
"/",
",",
"\"y\"",
")",
".",
"replace",
"(",
"/",
"ses$",
"/",
",",
"\"se\"",
")",
".",
"replace",
"... | Returns singular form of the string
@method singular
@param {String} obj String to transform
@return {String} Transformed string | [
"Returns",
"singular",
"form",
"of",
"the",
"string"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L8854-L8856 | |
36,522 | avoidwork/abaaso | lib/abaaso.js | function ( obj ) {
var s = string.trim( obj ).replace( /\.|_|-|\@|\[|\]|\(|\)|\#|\$|\%|\^|\&|\*|\s+/g, " " ).toLowerCase().split( regex.space_hyphen ),
r = [];
array.each( s, function ( i, idx ) {
r.push( idx === 0 ? i : string.capitalize( i ) );
});
return r.join( "" );
} | javascript | function ( obj ) {
var s = string.trim( obj ).replace( /\.|_|-|\@|\[|\]|\(|\)|\#|\$|\%|\^|\&|\*|\s+/g, " " ).toLowerCase().split( regex.space_hyphen ),
r = [];
array.each( s, function ( i, idx ) {
r.push( idx === 0 ? i : string.capitalize( i ) );
});
return r.join( "" );
} | [
"function",
"(",
"obj",
")",
"{",
"var",
"s",
"=",
"string",
".",
"trim",
"(",
"obj",
")",
".",
"replace",
"(",
"/",
"\\.|_|-|\\@|\\[|\\]|\\(|\\)|\\#|\\$|\\%|\\^|\\&|\\*|\\s+",
"/",
"g",
",",
"\" \"",
")",
".",
"toLowerCase",
"(",
")",
".",
"split",
"(",
... | Transforms the case of a String into CamelCase
@method toCamelCase
@param {String} obj String to capitalize
@return {String} Camel case String | [
"Transforms",
"the",
"case",
"of",
"a",
"String",
"into",
"CamelCase"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L8865-L8874 | |
36,523 | avoidwork/abaaso | lib/abaaso.js | function ( obj ) {
obj = string.trim( obj );
return obj.charAt( 0 ).toLowerCase() + obj.slice( 1 );
} | javascript | function ( obj ) {
obj = string.trim( obj );
return obj.charAt( 0 ).toLowerCase() + obj.slice( 1 );
} | [
"function",
"(",
"obj",
")",
"{",
"obj",
"=",
"string",
".",
"trim",
"(",
"obj",
")",
";",
"return",
"obj",
".",
"charAt",
"(",
"0",
")",
".",
"toLowerCase",
"(",
")",
"+",
"obj",
".",
"slice",
"(",
"1",
")",
";",
"}"
] | Uncapitalizes the String
@method uncapitalize
@param {String} obj String to uncapitalize
@return {String} Uncapitalized String | [
"Uncapitalizes",
"the",
"String"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L8905-L8909 | |
36,524 | avoidwork/abaaso | lib/abaaso.js | function ( obj, caps ) {
if ( caps !== true ) {
return string.explode( obj, "-" ).join( " " );
}
else {
return string.explode( obj, "-" ).map( function ( i ) {
return string.capitalize( i );
}).join( " " );
}
} | javascript | function ( obj, caps ) {
if ( caps !== true ) {
return string.explode( obj, "-" ).join( " " );
}
else {
return string.explode( obj, "-" ).map( function ( i ) {
return string.capitalize( i );
}).join( " " );
}
} | [
"function",
"(",
"obj",
",",
"caps",
")",
"{",
"if",
"(",
"caps",
"!==",
"true",
")",
"{",
"return",
"string",
".",
"explode",
"(",
"obj",
",",
"\"-\"",
")",
".",
"join",
"(",
"\" \"",
")",
";",
"}",
"else",
"{",
"return",
"string",
".",
"explode... | Replaces all hyphens with spaces
@method unhyphenate
@param {String} obj String to unhypenate
@param {Boolean} caps [Optional] True to capitalize each word
@return {String} Unhyphenated String | [
"Replaces",
"all",
"hyphens",
"with",
"spaces"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L8919-L8928 | |
36,525 | avoidwork/abaaso | lib/abaaso.js | function ( arg ) {
var result;
if ( !arg ) {
return;
}
arg = string.trim( arg );
if ( arg.indexOf( "," ) === -1 ) {
result = utility.dom( arg );
}
else {
result = [];
array.each( string.explode( arg ), function ( query ) {
var obj = utility.dom( query );
if ( obj instanceof Array ... | javascript | function ( arg ) {
var result;
if ( !arg ) {
return;
}
arg = string.trim( arg );
if ( arg.indexOf( "," ) === -1 ) {
result = utility.dom( arg );
}
else {
result = [];
array.each( string.explode( arg ), function ( query ) {
var obj = utility.dom( query );
if ( obj instanceof Array ... | [
"function",
"(",
"arg",
")",
"{",
"var",
"result",
";",
"if",
"(",
"!",
"arg",
")",
"{",
"return",
";",
"}",
"arg",
"=",
"string",
".",
"trim",
"(",
"arg",
")",
";",
"if",
"(",
"arg",
".",
"indexOf",
"(",
"\",\"",
")",
"===",
"-",
"1",
")",
... | Queries the DOM using CSS selectors and returns an Element or Array of Elements
@method $
@param {String} arg Comma delimited string of CSS selectors
@return {Mixed} Element or Array of Elements | [
"Queries",
"the",
"DOM",
"using",
"CSS",
"selectors",
"and",
"returns",
"an",
"Element",
"or",
"Array",
"of",
"Elements"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L8946-L8974 | |
36,526 | avoidwork/abaaso | lib/abaaso.js | function ( obj, origin ) {
var o = obj,
s = origin;
utility.iterate( s, function ( v, k ) {
var getter, setter;
if ( !( v instanceof RegExp ) && typeof v === "function" ) {
o[k] = v.bind( o[k] );
}
else if ( !(v instanceof RegExp ) && !(v instanceof Array ) && v instanceof Object ) {
if ... | javascript | function ( obj, origin ) {
var o = obj,
s = origin;
utility.iterate( s, function ( v, k ) {
var getter, setter;
if ( !( v instanceof RegExp ) && typeof v === "function" ) {
o[k] = v.bind( o[k] );
}
else if ( !(v instanceof RegExp ) && !(v instanceof Array ) && v instanceof Object ) {
if ... | [
"function",
"(",
"obj",
",",
"origin",
")",
"{",
"var",
"o",
"=",
"obj",
",",
"s",
"=",
"origin",
";",
"utility",
".",
"iterate",
"(",
"s",
",",
"function",
"(",
"v",
",",
"k",
")",
"{",
"var",
"getter",
",",
"setter",
";",
"if",
"(",
"!",
"(... | Aliases origin onto obj
@method alias
@param {Object} obj Object receiving aliasing
@param {Object} origin Object providing structure to obj
@return {Object} Object receiving aliasing | [
"Aliases",
"origin",
"onto",
"obj"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L8984-L9015 | |
36,527 | avoidwork/abaaso | lib/abaaso.js | function ( id ) {
if ( id === undefined || string.isEmpty( id ) ) {
throw new Error( label.error.invalidArguments );
}
// deferred
if ( utility.timer[id] !== undefined ) {
clearTimeout( utility.timer[id] );
delete utility.timer[id];
}
// repeating
if ( utility.repeating[id] !== undefined ) {
... | javascript | function ( id ) {
if ( id === undefined || string.isEmpty( id ) ) {
throw new Error( label.error.invalidArguments );
}
// deferred
if ( utility.timer[id] !== undefined ) {
clearTimeout( utility.timer[id] );
delete utility.timer[id];
}
// repeating
if ( utility.repeating[id] !== undefined ) {
... | [
"function",
"(",
"id",
")",
"{",
"if",
"(",
"id",
"===",
"undefined",
"||",
"string",
".",
"isEmpty",
"(",
"id",
")",
")",
"{",
"throw",
"new",
"Error",
"(",
"label",
".",
"error",
".",
"invalidArguments",
")",
";",
"}",
"// deferred",
"if",
"(",
"... | Clears deferred & repeating functions
@method clearTimers
@param {String} id ID of timer( s )
@return {Undefined} undefined | [
"Clears",
"deferred",
"&",
"repeating",
"functions"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9024-L9040 | |
36,528 | avoidwork/abaaso | lib/abaaso.js | function ( obj, shallow ) {
var clone;
if ( shallow === true ) {
return json.decode( json.encode( obj ) );
}
else if ( !obj || regex.primitive.test( typeof obj ) || ( obj instanceof RegExp ) ) {
return obj;
}
else if ( obj instanceof Array ) {
return obj.slice();
}
else if ( !server && !client... | javascript | function ( obj, shallow ) {
var clone;
if ( shallow === true ) {
return json.decode( json.encode( obj ) );
}
else if ( !obj || regex.primitive.test( typeof obj ) || ( obj instanceof RegExp ) ) {
return obj;
}
else if ( obj instanceof Array ) {
return obj.slice();
}
else if ( !server && !client... | [
"function",
"(",
"obj",
",",
"shallow",
")",
"{",
"var",
"clone",
";",
"if",
"(",
"shallow",
"===",
"true",
")",
"{",
"return",
"json",
".",
"decode",
"(",
"json",
".",
"encode",
"(",
"obj",
")",
")",
";",
"}",
"else",
"if",
"(",
"!",
"obj",
"|... | Clones an Object
@method clone
@param {Object} obj Object to clone
@param {Boolean} shallow [Optional] Create a shallow clone, which doesn't maintain prototypes, default is `false`
@return {Object} Clone of obj | [
"Clones",
"an",
"Object"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9050-L9091 | |
36,529 | avoidwork/abaaso | lib/abaaso.js | function ( value ) {
var tmp;
if ( value === null || value === undefined ) {
return undefined;
}
else if ( value === "true" ) {
return true;
}
else if ( value === "false" ) {
return false;
}
else if ( value === "null" ) {
return null;
}
else if ( value === "undefined" ) {
return unde... | javascript | function ( value ) {
var tmp;
if ( value === null || value === undefined ) {
return undefined;
}
else if ( value === "true" ) {
return true;
}
else if ( value === "false" ) {
return false;
}
else if ( value === "null" ) {
return null;
}
else if ( value === "undefined" ) {
return unde... | [
"function",
"(",
"value",
")",
"{",
"var",
"tmp",
";",
"if",
"(",
"value",
"===",
"null",
"||",
"value",
"===",
"undefined",
")",
"{",
"return",
"undefined",
";",
"}",
"else",
"if",
"(",
"value",
"===",
"\"true\"",
")",
"{",
"return",
"true",
";",
... | Coerces a String to a Type
@method coerce
@param {String} value String to coerce
@return {Mixed} Primitive version of the String | [
"Coerces",
"a",
"String",
"to",
"a",
"Type"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9100-L9130 | |
36,530 | avoidwork/abaaso | lib/abaaso.js | function ( content, media ) {
var ss, css;
ss = element.create( "style", {type: "text/css", media: media || "print, screen"}, utility.$( "head" )[0] );
if ( ss.styleSheet ) {
ss.styleSheet.cssText = content;
}
else {
css = document.createTextNode( content );
ss.appendChild( css );
}
return ss;... | javascript | function ( content, media ) {
var ss, css;
ss = element.create( "style", {type: "text/css", media: media || "print, screen"}, utility.$( "head" )[0] );
if ( ss.styleSheet ) {
ss.styleSheet.cssText = content;
}
else {
css = document.createTextNode( content );
ss.appendChild( css );
}
return ss;... | [
"function",
"(",
"content",
",",
"media",
")",
"{",
"var",
"ss",
",",
"css",
";",
"ss",
"=",
"element",
".",
"create",
"(",
"\"style\"",
",",
"{",
"type",
":",
"\"text/css\"",
",",
"media",
":",
"media",
"||",
"\"print, screen\"",
"}",
",",
"utility",
... | Creates a CSS stylesheet in the View
@method css
@param {String} content CSS to put in a style tag
@param {String} media [Optional] Medias the stylesheet applies to
@return {Object} Element created or undefined | [
"Creates",
"a",
"CSS",
"stylesheet",
"in",
"the",
"View"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9157-L9171 | |
36,531 | avoidwork/abaaso | lib/abaaso.js | function ( fn, ms, scope ) {
ms = ms || 1000;
scope = scope || global;
return function debounced () {
setTimeout( function () {
fn.apply( scope, arguments );
}, ms);
};
} | javascript | function ( fn, ms, scope ) {
ms = ms || 1000;
scope = scope || global;
return function debounced () {
setTimeout( function () {
fn.apply( scope, arguments );
}, ms);
};
} | [
"function",
"(",
"fn",
",",
"ms",
",",
"scope",
")",
"{",
"ms",
"=",
"ms",
"||",
"1000",
";",
"scope",
"=",
"scope",
"||",
"global",
";",
"return",
"function",
"debounced",
"(",
")",
"{",
"setTimeout",
"(",
"function",
"(",
")",
"{",
"fn",
".",
"... | Debounces a function
@method debounce
@param {Function} fn Function to execute
@param {Number} ms Time to wait to execute in milliseconds, default is 1000
@param {Mixed} scope `this` context during execution, default is `global`
@return {Undefined} undefined | [
"Debounces",
"a",
"function"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9182-L9191 | |
36,532 | avoidwork/abaaso | lib/abaaso.js | function ( args, value, obj ) {
args = args.split( "." );
var p = obj,
nth = args.length;
if ( obj === undefined ) {
obj = this;
}
if ( value === undefined ) {
value = null;
}
array.each( args, function ( i, idx ) {
var num = idx + 1 < nth && !isNaN( number.parse( args[idx + 1], 10 ... | javascript | function ( args, value, obj ) {
args = args.split( "." );
var p = obj,
nth = args.length;
if ( obj === undefined ) {
obj = this;
}
if ( value === undefined ) {
value = null;
}
array.each( args, function ( i, idx ) {
var num = idx + 1 < nth && !isNaN( number.parse( args[idx + 1], 10 ... | [
"function",
"(",
"args",
",",
"value",
",",
"obj",
")",
"{",
"args",
"=",
"args",
".",
"split",
"(",
"\".\"",
")",
";",
"var",
"p",
"=",
"obj",
",",
"nth",
"=",
"args",
".",
"length",
";",
"if",
"(",
"obj",
"===",
"undefined",
")",
"{",
"obj",
... | Allows deep setting of properties without knowing
if the structure is valid
@method define
@param {String} args Dot delimited string of the structure
@param {Mixed} value Value to set
@param {Object} obj Object receiving value
@return {Object} Object receiving value | [
"Allows",
"deep",
"setting",
"of",
"properties",
"without",
"knowing",
"if",
"the",
"structure",
"is",
"valid"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9203-L9246 | |
36,533 | avoidwork/abaaso | lib/abaaso.js | function ( fn, ms, id, repeat ) {
var op;
ms = ms || 0;
repeat = ( repeat === true );
if ( id !== undefined ) {
utility.clearTimers( id );
}
else {
id = utility.uuid( true );
}
op = function () {
utility.clearTimers( id );
fn();
};
utility[repeat ? "repeating" : "timer"][id] = se... | javascript | function ( fn, ms, id, repeat ) {
var op;
ms = ms || 0;
repeat = ( repeat === true );
if ( id !== undefined ) {
utility.clearTimers( id );
}
else {
id = utility.uuid( true );
}
op = function () {
utility.clearTimers( id );
fn();
};
utility[repeat ? "repeating" : "timer"][id] = se... | [
"function",
"(",
"fn",
",",
"ms",
",",
"id",
",",
"repeat",
")",
"{",
"var",
"op",
";",
"ms",
"=",
"ms",
"||",
"0",
";",
"repeat",
"=",
"(",
"repeat",
"===",
"true",
")",
";",
"if",
"(",
"id",
"!==",
"undefined",
")",
"{",
"utility",
".",
"cl... | Defers the execution of Function by at least the supplied milliseconds
Timing may vary under "heavy load" relative to the CPU & client JavaScript engine
@method defer
@param {Function} fn Function to defer execution of
@param {Number} ms Milliseconds to defer execution
@param {Number} id [Optional] ... | [
"Defers",
"the",
"execution",
"of",
"Function",
"by",
"at",
"least",
"the",
"supplied",
"milliseconds",
"Timing",
"may",
"vary",
"under",
"heavy",
"load",
"relative",
"to",
"the",
"CPU",
"&",
"client",
"JavaScript",
"engine"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9259-L9280 | |
36,534 | avoidwork/abaaso | lib/abaaso.js | function ( arg ) {
var result;
if ( !regex.selector_complex.test( arg ) ) {
if ( regex.hash.test( arg ) ) {
result = document.getElementById( arg.replace( regex.hash, "" ) ) || undefined;
}
else if ( regex.klass.test( arg ) ) {
result = array.cast( document.getElementsByClassName( arg.replace( reg... | javascript | function ( arg ) {
var result;
if ( !regex.selector_complex.test( arg ) ) {
if ( regex.hash.test( arg ) ) {
result = document.getElementById( arg.replace( regex.hash, "" ) ) || undefined;
}
else if ( regex.klass.test( arg ) ) {
result = array.cast( document.getElementsByClassName( arg.replace( reg... | [
"function",
"(",
"arg",
")",
"{",
"var",
"result",
";",
"if",
"(",
"!",
"regex",
".",
"selector_complex",
".",
"test",
"(",
"arg",
")",
")",
"{",
"if",
"(",
"regex",
".",
"hash",
".",
"test",
"(",
"arg",
")",
")",
"{",
"result",
"=",
"document",
... | Queries DOM with fastest method
@method dom
@param {String} arg DOM query
@return {Mixed} undefined, Element, or Array of Elements | [
"Queries",
"DOM",
"with",
"fastest",
"method"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9289-L9311 | |
36,535 | avoidwork/abaaso | lib/abaaso.js | function ( e, args, scope, warning ) {
warning = ( warning === true );
var o = {
"arguments" : args !== undefined ? array.cast( args ) : [],
message : e.message || e,
number : e.number !== undefined ? ( e.number & 0xFFFF ) : undefined,
scope : scope,
stack : e.stack || undefi... | javascript | function ( e, args, scope, warning ) {
warning = ( warning === true );
var o = {
"arguments" : args !== undefined ? array.cast( args ) : [],
message : e.message || e,
number : e.number !== undefined ? ( e.number & 0xFFFF ) : undefined,
scope : scope,
stack : e.stack || undefi... | [
"function",
"(",
"e",
",",
"args",
",",
"scope",
",",
"warning",
")",
"{",
"warning",
"=",
"(",
"warning",
"===",
"true",
")",
";",
"var",
"o",
"=",
"{",
"\"arguments\"",
":",
"args",
"!==",
"undefined",
"?",
"array",
".",
"cast",
"(",
"args",
")",... | Error handling, with history in .log
@method error
@param {Mixed} e Error object or message to display
@param {Array} args Array of arguments from the callstack
@param {Mixed} scope Entity that was "this"
@param {Boolean} warning [Optional] Will display as console warning if true
@return {Undefine... | [
"Error",
"handling",
"with",
"history",
"in",
".",
"log"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9334-L9351 | |
36,536 | avoidwork/abaaso | lib/abaaso.js | function ( obj, dom ) {
dom = ( dom === true );
var id;
if ( obj !== undefined && ( ( obj.id !== undefined && obj.id !== "" ) || ( obj instanceof Array ) || ( obj instanceof String || typeof obj === "string" ) ) ) {
return obj;
}
if ( dom ) {
do {
id = utility.domId( utility.uuid( true) );
}
... | javascript | function ( obj, dom ) {
dom = ( dom === true );
var id;
if ( obj !== undefined && ( ( obj.id !== undefined && obj.id !== "" ) || ( obj instanceof Array ) || ( obj instanceof String || typeof obj === "string" ) ) ) {
return obj;
}
if ( dom ) {
do {
id = utility.domId( utility.uuid( true) );
}
... | [
"function",
"(",
"obj",
",",
"dom",
")",
"{",
"dom",
"=",
"(",
"dom",
"===",
"true",
")",
";",
"var",
"id",
";",
"if",
"(",
"obj",
"!==",
"undefined",
"&&",
"(",
"(",
"obj",
".",
"id",
"!==",
"undefined",
"&&",
"obj",
".",
"id",
"!==",
"\"\"",
... | Generates an ID value
@method genId
@param {Mixed} obj [Optional] Object to receive id
@param {Boolean} dom [Optional] Verify the ID is unique in the DOM, default is false
@return {Mixed} Object or id | [
"Generates",
"an",
"ID",
"value"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9427-L9453 | |
36,537 | avoidwork/abaaso | lib/abaaso.js | function ( color ) {
var digits, red, green, blue, result, i, nth;
if ( color.charAt( 0 ) === "#" ) {
result = color;
}
else {
digits = string.explode( color.replace( /.*\(|\)/g, "" ) );
red = number.parse( digits[0] || 0 );
green = number.parse( digits[1] || 0 );
blue = number.parse( d... | javascript | function ( color ) {
var digits, red, green, blue, result, i, nth;
if ( color.charAt( 0 ) === "#" ) {
result = color;
}
else {
digits = string.explode( color.replace( /.*\(|\)/g, "" ) );
red = number.parse( digits[0] || 0 );
green = number.parse( digits[1] || 0 );
blue = number.parse( d... | [
"function",
"(",
"color",
")",
"{",
"var",
"digits",
",",
"red",
",",
"green",
",",
"blue",
",",
"result",
",",
"i",
",",
"nth",
";",
"if",
"(",
"color",
".",
"charAt",
"(",
"0",
")",
"===",
"\"#\"",
")",
"{",
"result",
"=",
"color",
";",
"}",
... | Converts RGB to HEX
@method hex
@param {String} color RGB as `rgb(255, 255, 255)` or `255, 255, 255`
@return {String} Color as HEX | [
"Converts",
"RGB",
"to",
"HEX"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9477-L9503 | |
36,538 | avoidwork/abaaso | lib/abaaso.js | function ( obj ) {
var l = abaaso.loading;
if ( l.url === null || obj === undefined ) {
throw new Error( label.error.invalidArguments );
}
// Setting loading image
if ( l.image === undefined ) {
l.image = new Image();
l.image.src = l.url;
}
// Clearing target element
element.clear( obj )... | javascript | function ( obj ) {
var l = abaaso.loading;
if ( l.url === null || obj === undefined ) {
throw new Error( label.error.invalidArguments );
}
// Setting loading image
if ( l.image === undefined ) {
l.image = new Image();
l.image.src = l.url;
}
// Clearing target element
element.clear( obj )... | [
"function",
"(",
"obj",
")",
"{",
"var",
"l",
"=",
"abaaso",
".",
"loading",
";",
"if",
"(",
"l",
".",
"url",
"===",
"null",
"||",
"obj",
"===",
"undefined",
")",
"{",
"throw",
"new",
"Error",
"(",
"label",
".",
"error",
".",
"invalidArguments",
")... | Renders a loading icon in a target element,
with a class of "loading"
@method loading
@param {Mixed} obj Element
@return {Mixed} Element | [
"Renders",
"a",
"loading",
"icon",
"in",
"a",
"target",
"element",
"with",
"a",
"class",
"of",
"loading"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9563-L9583 | |
36,539 | avoidwork/abaaso | lib/abaaso.js | function ( arg, target ) {
var ts, msg;
if ( typeof console !== "undefined" ) {
ts = typeof arg !== "object";
msg = ts ? "[" + new Date().toLocaleTimeString() + "] " + arg : arg;
console[target || "log"]( msg );
}
} | javascript | function ( arg, target ) {
var ts, msg;
if ( typeof console !== "undefined" ) {
ts = typeof arg !== "object";
msg = ts ? "[" + new Date().toLocaleTimeString() + "] " + arg : arg;
console[target || "log"]( msg );
}
} | [
"function",
"(",
"arg",
",",
"target",
")",
"{",
"var",
"ts",
",",
"msg",
";",
"if",
"(",
"typeof",
"console",
"!==",
"\"undefined\"",
")",
"{",
"ts",
"=",
"typeof",
"arg",
"!==",
"\"object\"",
";",
"msg",
"=",
"ts",
"?",
"\"[\"",
"+",
"new",
"Date... | Writes argument to the console
@method log
@param {String} arg String to write to the console
@param {String} target [Optional] Target console, default is "log"
@return {Undefined} undefined | [
"Writes",
"argument",
"to",
"the",
"console"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9593-L9601 | |
36,540 | avoidwork/abaaso | lib/abaaso.js | function ( obj, arg ) {
utility.iterate( arg, function ( v, k ) {
if ( ( obj[k] instanceof Array ) && ( v instanceof Array ) ) {
array.merge( obj[k], v );
}
else if ( ( obj[k] instanceof Object ) && ( v instanceof Object ) ) {
utility.iterate( v, function ( x, y ) {
obj[k][y] = utility.clone( x ... | javascript | function ( obj, arg ) {
utility.iterate( arg, function ( v, k ) {
if ( ( obj[k] instanceof Array ) && ( v instanceof Array ) ) {
array.merge( obj[k], v );
}
else if ( ( obj[k] instanceof Object ) && ( v instanceof Object ) ) {
utility.iterate( v, function ( x, y ) {
obj[k][y] = utility.clone( x ... | [
"function",
"(",
"obj",
",",
"arg",
")",
"{",
"utility",
".",
"iterate",
"(",
"arg",
",",
"function",
"(",
"v",
",",
"k",
")",
"{",
"if",
"(",
"(",
"obj",
"[",
"k",
"]",
"instanceof",
"Array",
")",
"&&",
"(",
"v",
"instanceof",
"Array",
")",
")... | Merges obj with arg
@method merge
@param {Object} obj Object to decorate
@param {Object} arg Decoration
@return {Object} Decorated Object | [
"Merges",
"obj",
"with",
"arg"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9611-L9627 | |
36,541 | avoidwork/abaaso | lib/abaaso.js | function ( arg, obj ) {
if ( $[arg] !== undefined || !obj instanceof Object ) {
throw new Error( label.error.invalidArguments );
}
$[arg] = obj;
return $[arg];
} | javascript | function ( arg, obj ) {
if ( $[arg] !== undefined || !obj instanceof Object ) {
throw new Error( label.error.invalidArguments );
}
$[arg] = obj;
return $[arg];
} | [
"function",
"(",
"arg",
",",
"obj",
")",
"{",
"if",
"(",
"$",
"[",
"arg",
"]",
"!==",
"undefined",
"||",
"!",
"obj",
"instanceof",
"Object",
")",
"{",
"throw",
"new",
"Error",
"(",
"label",
".",
"error",
".",
"invalidArguments",
")",
";",
"}",
"$",... | Registers a module on abaaso
@method module
@param {String} arg Module name
@param {Object} obj Module structure
@return {Object} Module registered | [
"Registers",
"a",
"module",
"on",
"abaaso"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9637-L9645 | |
36,542 | avoidwork/abaaso | lib/abaaso.js | function ( obj ) {
return typeof obj === "object" ? obj : ( obj.charAt && obj.charAt( 0 ) === "#" ? utility.$( obj ) : obj );
} | javascript | function ( obj ) {
return typeof obj === "object" ? obj : ( obj.charAt && obj.charAt( 0 ) === "#" ? utility.$( obj ) : obj );
} | [
"function",
"(",
"obj",
")",
"{",
"return",
"typeof",
"obj",
"===",
"\"object\"",
"?",
"obj",
":",
"(",
"obj",
".",
"charAt",
"&&",
"obj",
".",
"charAt",
"(",
"0",
")",
"===",
"\"#\"",
"?",
"utility",
".",
"$",
"(",
"obj",
")",
":",
"obj",
")",
... | Returns Object, or reference to Element
@method object
@private
@param {Mixed} obj Entity or $ query
@return {Mixed} Entity | [
"Returns",
"Object",
"or",
"reference",
"to",
"Element"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9655-L9657 | |
36,543 | avoidwork/abaaso | lib/abaaso.js | function ( uri ) {
var obj = {},
parsed = {};
if ( uri === undefined ) {
uri = !server ? location.href : "";
}
if ( !server ) {
obj = document.createElement( "a" );
obj.href = uri;
}
else {
obj = url.parse( uri );
}
if ( server ) {
utility.iterate( obj, function ( v, k ) {
... | javascript | function ( uri ) {
var obj = {},
parsed = {};
if ( uri === undefined ) {
uri = !server ? location.href : "";
}
if ( !server ) {
obj = document.createElement( "a" );
obj.href = uri;
}
else {
obj = url.parse( uri );
}
if ( server ) {
utility.iterate( obj, function ( v, k ) {
... | [
"function",
"(",
"uri",
")",
"{",
"var",
"obj",
"=",
"{",
"}",
",",
"parsed",
"=",
"{",
"}",
";",
"if",
"(",
"uri",
"===",
"undefined",
")",
"{",
"uri",
"=",
"!",
"server",
"?",
"location",
".",
"href",
":",
"\"\"",
";",
"}",
"if",
"(",
"!",
... | Parses a URI into an Object
@method parse
@param {String} uri URI to parse
@return {Object} Parsed URI | [
"Parses",
"a",
"URI",
"into",
"an",
"Object"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9666-L9726 | |
36,544 | avoidwork/abaaso | lib/abaaso.js | function () {
if ( ( server || ( !client.ie || client.version > 8 ) ) && typeof Object.defineProperty === "function" ) {
return function ( obj, prop, descriptor ) {
if ( !( descriptor instanceof Object ) ) {
throw new Error( label.error.invalidArguments );
}
if ( descriptor.value !== undefined &&... | javascript | function () {
if ( ( server || ( !client.ie || client.version > 8 ) ) && typeof Object.defineProperty === "function" ) {
return function ( obj, prop, descriptor ) {
if ( !( descriptor instanceof Object ) ) {
throw new Error( label.error.invalidArguments );
}
if ( descriptor.value !== undefined &&... | [
"function",
"(",
")",
"{",
"if",
"(",
"(",
"server",
"||",
"(",
"!",
"client",
".",
"ie",
"||",
"client",
".",
"version",
">",
"8",
")",
")",
"&&",
"typeof",
"Object",
".",
"defineProperty",
"===",
"\"function\"",
")",
"{",
"return",
"function",
"(",... | Sets a property on an Object, if defineProperty cannot be used the value will be set classically
@method property
@param {Object} obj Object to decorate
@param {String} prop Name of property to set
@param {Object} descriptor Descriptor of the property
@return {Object} Object receiving the pr... | [
"Sets",
"a",
"property",
"on",
"an",
"Object",
"if",
"defineProperty",
"cannot",
"be",
"used",
"the",
"value",
"will",
"be",
"set",
"classically"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9737-L9762 | |
36,545 | avoidwork/abaaso | lib/abaaso.js | function ( obj, type ) {
var target = obj.prototype || obj;
utility.iterate( prototypes[type], function ( v, k ) {
if ( !target[k] ) {
utility.property( target, k, {value: v, configurable: true, writable: true} );
}
});
return obj;
} | javascript | function ( obj, type ) {
var target = obj.prototype || obj;
utility.iterate( prototypes[type], function ( v, k ) {
if ( !target[k] ) {
utility.property( target, k, {value: v, configurable: true, writable: true} );
}
});
return obj;
} | [
"function",
"(",
"obj",
",",
"type",
")",
"{",
"var",
"target",
"=",
"obj",
".",
"prototype",
"||",
"obj",
";",
"utility",
".",
"iterate",
"(",
"prototypes",
"[",
"type",
"]",
",",
"function",
"(",
"v",
",",
"k",
")",
"{",
"if",
"(",
"!",
"target... | Sets methods on a prototype object
Allows hooks to be overwritten
@method proto
@param {Object} obj Object receiving prototype extension
@param {String} type Identifier of obj, determines what Arrays to apply
@return {Object} obj or undefined | [
"Sets",
"methods",
"on",
"a",
"prototype",
"object"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9774-L9784 | |
36,546 | avoidwork/abaaso | lib/abaaso.js | function ( arg, qstring ) {
var obj = {},
result = qstring !== undefined ? ( qstring.indexOf( "?" ) > -1 ? qstring.replace( /.*\?/, "" ) : null) : ( server || string.isEmpty( location.search ) ? null : location.search.replace( "?", "" ) );
if ( result !== null && !string.isEmpty( result ) ) {
result = ... | javascript | function ( arg, qstring ) {
var obj = {},
result = qstring !== undefined ? ( qstring.indexOf( "?" ) > -1 ? qstring.replace( /.*\?/, "" ) : null) : ( server || string.isEmpty( location.search ) ? null : location.search.replace( "?", "" ) );
if ( result !== null && !string.isEmpty( result ) ) {
result = ... | [
"function",
"(",
"arg",
",",
"qstring",
")",
"{",
"var",
"obj",
"=",
"{",
"}",
",",
"result",
"=",
"qstring",
"!==",
"undefined",
"?",
"(",
"qstring",
".",
"indexOf",
"(",
"\"?\"",
")",
">",
"-",
"1",
"?",
"qstring",
".",
"replace",
"(",
"/",
".*... | Parses a query string & coerces values
@method queryString
@param {String} arg [Optional] Key to find in the querystring
@param {String} qstring [Optional] Query string to parse
@return {Mixed} Value or Object of key:value pairs | [
"Parses",
"a",
"query",
"string",
"&",
"coerces",
"values"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9794-L9832 | |
36,547 | avoidwork/abaaso | lib/abaaso.js | function ( arg ) {
if ( arg === undefined ) {
arg = this || utility.$;
}
arg = arg.toString().match( regex.reflect )[1];
return string.explode( arg );
} | javascript | function ( arg ) {
if ( arg === undefined ) {
arg = this || utility.$;
}
arg = arg.toString().match( regex.reflect )[1];
return string.explode( arg );
} | [
"function",
"(",
"arg",
")",
"{",
"if",
"(",
"arg",
"===",
"undefined",
")",
"{",
"arg",
"=",
"this",
"||",
"utility",
".",
"$",
";",
"}",
"arg",
"=",
"arg",
".",
"toString",
"(",
")",
".",
"match",
"(",
"regex",
".",
"reflect",
")",
"[",
"1",
... | Returns an Array of parameters of a Function
@method reflect
@param {Function} arg Function to reflect
@return {Array} Array of parameters | [
"Returns",
"an",
"Array",
"of",
"parameters",
"of",
"a",
"Function"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9841-L9849 | |
36,548 | avoidwork/abaaso | lib/abaaso.js | function ( fn, ms, id, now ) {
ms = ms || 10;
id = id || utility.uuid( true );
now = ( now !== false );
// Could be valid to return false from initial execution
if ( now && fn() === false ) {
return;
}
// Creating repeating execution
utility.defer( function () {
var recursive = function ( fn, ... | javascript | function ( fn, ms, id, now ) {
ms = ms || 10;
id = id || utility.uuid( true );
now = ( now !== false );
// Could be valid to return false from initial execution
if ( now && fn() === false ) {
return;
}
// Creating repeating execution
utility.defer( function () {
var recursive = function ( fn, ... | [
"function",
"(",
"fn",
",",
"ms",
",",
"id",
",",
"now",
")",
"{",
"ms",
"=",
"ms",
"||",
"10",
";",
"id",
"=",
"id",
"||",
"utility",
".",
"uuid",
"(",
"true",
")",
";",
"now",
"=",
"(",
"now",
"!==",
"false",
")",
";",
"// Could be valid to r... | Creates a recursive function
Return false from the function to halt recursion
@method repeat
@param {Function} fn Function to execute repeatedly
@param {Number} ms Milliseconds to stagger the execution
@param {String} id [Optional] Timeout ID
@param {Boolean} now Executes `fn` and then setup repetition, d... | [
"Creates",
"a",
"recursive",
"function"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9863-L9892 | |
36,549 | avoidwork/abaaso | lib/abaaso.js | function ( arg, target ) {
var frag;
if ( typeof arg !== "object" || (!(regex.object_undefined.test( typeof target ) ) && ( target = target.charAt( 0 ) === "#" ? utility.$( target ) : utility.$( target )[0] ) === undefined ) ) {
throw new Error( label.error.invalidArguments );
}
if ( target === undefined )... | javascript | function ( arg, target ) {
var frag;
if ( typeof arg !== "object" || (!(regex.object_undefined.test( typeof target ) ) && ( target = target.charAt( 0 ) === "#" ? utility.$( target ) : utility.$( target )[0] ) === undefined ) ) {
throw new Error( label.error.invalidArguments );
}
if ( target === undefined )... | [
"function",
"(",
"arg",
",",
"target",
")",
"{",
"var",
"frag",
";",
"if",
"(",
"typeof",
"arg",
"!==",
"\"object\"",
"||",
"(",
"!",
"(",
"regex",
".",
"object_undefined",
".",
"test",
"(",
"typeof",
"target",
")",
")",
"&&",
"(",
"target",
"=",
"... | Transforms JSON to HTML and appends to Body or target Element
@method tpl
@param {Object} data JSON Object describing HTML
@param {Mixed} target [Optional] Target Element or Element.id to receive the HTML
@return {Object} New Element created from the template | [
"Transforms",
"JSON",
"to",
"HTML",
"and",
"appends",
"to",
"Body",
"or",
"target",
"Element"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9939-L9971 | |
36,550 | avoidwork/abaaso | lib/abaaso.js | function ( safe ) {
var s = function () { return ( ( ( 1 + Math.random() ) * 0x10000 ) | 0 ).toString( 16 ).substring( 1 ); },
r = [8, 9, "a", "b"],
o;
o = ( s() + s() + "-" + s() + "-4" + s().substr( 0, 3 ) + "-" + r[Math.floor( Math.random() * 4 )] + s().substr( 0, 3 ) + "-" + s() + s() + s() );
i... | javascript | function ( safe ) {
var s = function () { return ( ( ( 1 + Math.random() ) * 0x10000 ) | 0 ).toString( 16 ).substring( 1 ); },
r = [8, 9, "a", "b"],
o;
o = ( s() + s() + "-" + s() + "-4" + s().substr( 0, 3 ) + "-" + r[Math.floor( Math.random() * 4 )] + s().substr( 0, 3 ) + "-" + s() + s() + s() );
i... | [
"function",
"(",
"safe",
")",
"{",
"var",
"s",
"=",
"function",
"(",
")",
"{",
"return",
"(",
"(",
"(",
"1",
"+",
"Math",
".",
"random",
"(",
")",
")",
"*",
"0x10000",
")",
"|",
"0",
")",
".",
"toString",
"(",
"16",
")",
".",
"substring",
"("... | Generates a version 4 UUID
@method uuid
@param {Boolean} safe [Optional] Strips - from UUID
@return {String} UUID | [
"Generates",
"a",
"version",
"4",
"UUID"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L9980-L9992 | |
36,551 | avoidwork/abaaso | lib/abaaso.js | function ( obj, arg ) {
array.each( arg.replace( /\]$/, "" ).replace( /\]/g, "." ).replace( /\.\./g, "." ).split( /\.|\[/ ), function ( i ) {
obj = obj[i];
});
return obj;
} | javascript | function ( obj, arg ) {
array.each( arg.replace( /\]$/, "" ).replace( /\]/g, "." ).replace( /\.\./g, "." ).split( /\.|\[/ ), function ( i ) {
obj = obj[i];
});
return obj;
} | [
"function",
"(",
"obj",
",",
"arg",
")",
"{",
"array",
".",
"each",
"(",
"arg",
".",
"replace",
"(",
"/",
"\\]$",
"/",
",",
"\"\"",
")",
".",
"replace",
"(",
"/",
"\\]",
"/",
"g",
",",
"\".\"",
")",
".",
"replace",
"(",
"/",
"\\.\\.",
"/",
"g... | Walks a structure and returns arg
@method walk
@param {Mixed} obj Object or Array
@param {String} arg String describing the property to return
@return {Mixed} arg | [
"Walks",
"a",
"structure",
"and",
"returns",
"arg"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L10002-L10008 | |
36,552 | avoidwork/abaaso | lib/abaaso.js | function () {
var i = 0,
defer = deferred(),
args = array.cast( arguments ),
nth;
// Did we receive an Array? if so it overrides any other arguments
if ( args[0] instanceof Array ) {
args = args[0];
}
// How many instances to observe?
nth = args.length;
// None, end on next ti... | javascript | function () {
var i = 0,
defer = deferred(),
args = array.cast( arguments ),
nth;
// Did we receive an Array? if so it overrides any other arguments
if ( args[0] instanceof Array ) {
args = args[0];
}
// How many instances to observe?
nth = args.length;
// None, end on next ti... | [
"function",
"(",
")",
"{",
"var",
"i",
"=",
"0",
",",
"defer",
"=",
"deferred",
"(",
")",
",",
"args",
"=",
"array",
".",
"cast",
"(",
"arguments",
")",
",",
"nth",
";",
"// Did we receive an Array? if so it overrides any other arguments",
"if",
"(",
"args",... | Accepts Deferreds or Promises as arguments or an Array
@method when
@return {Object} Deferred | [
"Accepts",
"Deferreds",
"or",
"Promises",
"as",
"arguments",
"or",
"an",
"Array"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L10016-L10064 | |
36,553 | avoidwork/abaaso | lib/abaaso.js | function ( arg, wrap ) {
try {
if ( arg === undefined ) {
throw new Error( label.error.invalidArguments );
}
wrap = ( wrap !== false );
var x = wrap ? "<xml>" : "",
top = ( arguments[2] !== false ),
node;
/**
* Encodes a value as a node
*
* @method node
* @priva... | javascript | function ( arg, wrap ) {
try {
if ( arg === undefined ) {
throw new Error( label.error.invalidArguments );
}
wrap = ( wrap !== false );
var x = wrap ? "<xml>" : "",
top = ( arguments[2] !== false ),
node;
/**
* Encodes a value as a node
*
* @method node
* @priva... | [
"function",
"(",
"arg",
",",
"wrap",
")",
"{",
"try",
"{",
"if",
"(",
"arg",
"===",
"undefined",
")",
"{",
"throw",
"new",
"Error",
"(",
"label",
".",
"error",
".",
"invalidArguments",
")",
";",
"}",
"wrap",
"=",
"(",
"wrap",
"!==",
"false",
")",
... | Returns XML String from an Object or Array
@method encode
@param {Mixed} arg Object or Array to cast to XML String
@return {String} XML String or undefined | [
"Returns",
"XML",
"String",
"from",
"an",
"Object",
"or",
"Array"
] | 07c147684bccd28868f377881eb80ffc285cd483 | https://github.com/avoidwork/abaaso/blob/07c147684bccd28868f377881eb80ffc285cd483/lib/abaaso.js#L10614-L10671 | |
36,554 | tinwatchman/grawlix | grawlix.js | function(str, options) {
// get settings
var settings;
if (_.isUndefined(options) && defaultSettings !== null) {
settings = defaultSettings;
} else if (!_.isUndefined(options)) {
settings = util.parseOptions(options, defaultOptions);
} else {
settings = util.parseOptions(defaultOptions);
defau... | javascript | function(str, options) {
// get settings
var settings;
if (_.isUndefined(options) && defaultSettings !== null) {
settings = defaultSettings;
} else if (!_.isUndefined(options)) {
settings = util.parseOptions(options, defaultOptions);
} else {
settings = util.parseOptions(defaultOptions);
defau... | [
"function",
"(",
"str",
",",
"options",
")",
"{",
"// get settings",
"var",
"settings",
";",
"if",
"(",
"_",
".",
"isUndefined",
"(",
"options",
")",
"&&",
"defaultSettings",
"!==",
"null",
")",
"{",
"settings",
"=",
"defaultSettings",
";",
"}",
"else",
... | Replaces all curse words in the given content string with cartoon-like
grawlixes.
@param {String} str Content string
@param {Object} options Options object. Optional.
@param {Object} options.style Style of grawlix to use for replacements.
Can be either a string, with the name of
the st... | [
"Replaces",
"all",
"curse",
"words",
"in",
"the",
"given",
"content",
"string",
"with",
"cartoon",
"-",
"like",
"grawlixes",
"."
] | 235cd9629992b97c62953b813d5034a9546211f1 | https://github.com/tinwatchman/grawlix/blob/235cd9629992b97c62953b813d5034a9546211f1/grawlix.js#L56-L69 | |
36,555 | tlewowski/zurvan | detail/DateInterceptor.js | FakeDate | function FakeDate(a, b, c, d, e, f, g) {
var argsArray = [].splice.call(arguments, 0);
var date =
argsArray.length === 0
? new OriginalDate(Date.now())
: makeOriginalDateFromArgs.apply(undefined, argsArray);
if (!(this instanceof FakeDate)) {
return date.toString();
}
t... | javascript | function FakeDate(a, b, c, d, e, f, g) {
var argsArray = [].splice.call(arguments, 0);
var date =
argsArray.length === 0
? new OriginalDate(Date.now())
: makeOriginalDateFromArgs.apply(undefined, argsArray);
if (!(this instanceof FakeDate)) {
return date.toString();
}
t... | [
"function",
"FakeDate",
"(",
"a",
",",
"b",
",",
"c",
",",
"d",
",",
"e",
",",
"f",
",",
"g",
")",
"{",
"var",
"argsArray",
"=",
"[",
"]",
".",
"splice",
".",
"call",
"(",
"arguments",
",",
"0",
")",
";",
"var",
"date",
"=",
"argsArray",
".",... | needs to have 7 arguments to be compliant to length of Date constructor | [
"needs",
"to",
"have",
"7",
"arguments",
"to",
"be",
"compliant",
"to",
"length",
"of",
"Date",
"constructor"
] | 22683cbbdb87684fe7f49922e2c4d96ed4a53107 | https://github.com/tlewowski/zurvan/blob/22683cbbdb87684fe7f49922e2c4d96ed4a53107/detail/DateInterceptor.js#L88-L100 |
36,556 | retextjs/retext-pos | index.js | patch | function patch(node, tag) {
var data = node.data || (node.data = {})
data.partOfSpeech = tag
} | javascript | function patch(node, tag) {
var data = node.data || (node.data = {})
data.partOfSpeech = tag
} | [
"function",
"patch",
"(",
"node",
",",
"tag",
")",
"{",
"var",
"data",
"=",
"node",
".",
"data",
"||",
"(",
"node",
".",
"data",
"=",
"{",
"}",
")",
"data",
".",
"partOfSpeech",
"=",
"tag",
"}"
] | Patch a `partOfSpeech` property on `node`s. | [
"Patch",
"a",
"partOfSpeech",
"property",
"on",
"node",
"s",
"."
] | e433f6fd8b52e175c2b641c72514aea9b0d4c341 | https://github.com/retextjs/retext-pos/blob/e433f6fd8b52e175c2b641c72514aea9b0d4c341/index.js#L57-L60 |
36,557 | datanews/tables | lib/columns-to-model.js | dataToType | function dataToType(data, name, options) {
options = options || {};
var knownID = /(^|\s|_)(zip|phone|id)(_|\s|$)/i;
// If data is not a simple type, then just use text
if (_.isArray(data[0]) || _.isObject(data[0])) {
return Sequelize.TEXT;
}
// Otherise go through each value and see what is found
d... | javascript | function dataToType(data, name, options) {
options = options || {};
var knownID = /(^|\s|_)(zip|phone|id)(_|\s|$)/i;
// If data is not a simple type, then just use text
if (_.isArray(data[0]) || _.isObject(data[0])) {
return Sequelize.TEXT;
}
// Otherise go through each value and see what is found
d... | [
"function",
"dataToType",
"(",
"data",
",",
"name",
",",
"options",
")",
"{",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"var",
"knownID",
"=",
"/",
"(^|\\s|_)(zip|phone|id)(_|\\s|$)",
"/",
"i",
";",
"// If data is not a simple type, then just use text",
"if"... | Data to type | [
"Data",
"to",
"type"
] | 4b33aa7a944a93260c49baecbb90345211cac789 | https://github.com/datanews/tables/blob/4b33aa7a944a93260c49baecbb90345211cac789/lib/columns-to-model.js#L73-L138 |
36,558 | datanews/tables | lib/columns-to-model.js | standardize | function standardize(value) {
var isString = _.isString(value);
value = utils.standardizeInput(value);
return (isString && value === null) ? "" : value;
} | javascript | function standardize(value) {
var isString = _.isString(value);
value = utils.standardizeInput(value);
return (isString && value === null) ? "" : value;
} | [
"function",
"standardize",
"(",
"value",
")",
"{",
"var",
"isString",
"=",
"_",
".",
"isString",
"(",
"value",
")",
";",
"value",
"=",
"utils",
".",
"standardizeInput",
"(",
"value",
")",
";",
"return",
"(",
"isString",
"&&",
"value",
"===",
"null",
")... | Convert value a bit, but keep as string if needed | [
"Convert",
"value",
"a",
"bit",
"but",
"keep",
"as",
"string",
"if",
"needed"
] | 4b33aa7a944a93260c49baecbb90345211cac789 | https://github.com/datanews/tables/blob/4b33aa7a944a93260c49baecbb90345211cac789/lib/columns-to-model.js#L141-L145 |
36,559 | datanews/tables | lib/columns-to-model.js | pickle | function pickle(value, options) {
options = options || {};
// Tests
var floatTest = /^(-|)[\d,]+.\d+$/g;
var intTest = /^\d+$/g;
var booleanTest = /^(true|false)$/g;
var dateTest = /^\d{1,2}\/\d{1,2}\/\d{2,4}$/g;
var datetimeTest = /^\d{1,2}\/\d{1,2}\/\d{2,4}\s+\d{1,2}:\d{1,2}(:\d{1,2}|)(\s+|)(am|pm|)$/gi... | javascript | function pickle(value, options) {
options = options || {};
// Tests
var floatTest = /^(-|)[\d,]+.\d+$/g;
var intTest = /^\d+$/g;
var booleanTest = /^(true|false)$/g;
var dateTest = /^\d{1,2}\/\d{1,2}\/\d{2,4}$/g;
var datetimeTest = /^\d{1,2}\/\d{1,2}\/\d{2,4}\s+\d{1,2}:\d{1,2}(:\d{1,2}|)(\s+|)(am|pm|)$/gi... | [
"function",
"pickle",
"(",
"value",
",",
"options",
")",
"{",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"// Tests",
"var",
"floatTest",
"=",
"/",
"^(-|)[\\d,]+.\\d+$",
"/",
"g",
";",
"var",
"intTest",
"=",
"/",
"^\\d+$",
"/",
"g",
";",
"var",
"... | Find type. Should return base Sequelize type | [
"Find",
"type",
".",
"Should",
"return",
"base",
"Sequelize",
"type"
] | 4b33aa7a944a93260c49baecbb90345211cac789 | https://github.com/datanews/tables/blob/4b33aa7a944a93260c49baecbb90345211cac789/lib/columns-to-model.js#L154-L181 |
36,560 | datanews/tables | examples/ny-campaign-finance.conf.js | function(line) {
line = line.toString();
var colCount = _.size(transactionFields);
var possibleRow = row + line;
var possibleFields = possibleRow.slice(1, possibleRow.length - 1).split("\",\"");
// Unfortunately there are some fields that have new line characters in them
// and there could be e... | javascript | function(line) {
line = line.toString();
var colCount = _.size(transactionFields);
var possibleRow = row + line;
var possibleFields = possibleRow.slice(1, possibleRow.length - 1).split("\",\"");
// Unfortunately there are some fields that have new line characters in them
// and there could be e... | [
"function",
"(",
"line",
")",
"{",
"line",
"=",
"line",
".",
"toString",
"(",
")",
";",
"var",
"colCount",
"=",
"_",
".",
"size",
"(",
"transactionFields",
")",
";",
"var",
"possibleRow",
"=",
"row",
"+",
"line",
";",
"var",
"possibleFields",
"=",
"p... | Comes in as buffer | [
"Comes",
"in",
"as",
"buffer"
] | 4b33aa7a944a93260c49baecbb90345211cac789 | https://github.com/datanews/tables/blob/4b33aa7a944a93260c49baecbb90345211cac789/examples/ny-campaign-finance.conf.js#L30-L64 | |
36,561 | datanews/tables | examples/ny-campaign-finance.conf.js | checkFieldLength | function checkFieldLength(parsed, field, length) {
length = length || transactionFields[field].options.length;
if (parsed.transactions[field] && parsed.transactions[field].toString().length > length) {
console.log(parsed.transactions);
console.log(field, parsed.transactions[field]);
}
} | javascript | function checkFieldLength(parsed, field, length) {
length = length || transactionFields[field].options.length;
if (parsed.transactions[field] && parsed.transactions[field].toString().length > length) {
console.log(parsed.transactions);
console.log(field, parsed.transactions[field]);
}
} | [
"function",
"checkFieldLength",
"(",
"parsed",
",",
"field",
",",
"length",
")",
"{",
"length",
"=",
"length",
"||",
"transactionFields",
"[",
"field",
"]",
".",
"options",
".",
"length",
";",
"if",
"(",
"parsed",
".",
"transactions",
"[",
"field",
"]",
... | Just a helpful function to help find some issues. | [
"Just",
"a",
"helpful",
"function",
"to",
"help",
"find",
"some",
"issues",
"."
] | 4b33aa7a944a93260c49baecbb90345211cac789 | https://github.com/datanews/tables/blob/4b33aa7a944a93260c49baecbb90345211cac789/examples/ny-campaign-finance.conf.js#L144-L150 |
36,562 | HumanBrainProject/jsdoc-sphinx | template/publish.js | improveFunc | function improveFunc(doclet) {
doclet.signature = doclet.name + '(';
_.each(doclet.params, function(p, i) {
if (!(p && p.type && p.type.names)) {
logger.debug('Bad parameter', p, doclet.longname);
return;
}
p.signature = ':param ' +
p.type && p.type.names && p.type.name... | javascript | function improveFunc(doclet) {
doclet.signature = doclet.name + '(';
_.each(doclet.params, function(p, i) {
if (!(p && p.type && p.type.names)) {
logger.debug('Bad parameter', p, doclet.longname);
return;
}
p.signature = ':param ' +
p.type && p.type.names && p.type.name... | [
"function",
"improveFunc",
"(",
"doclet",
")",
"{",
"doclet",
".",
"signature",
"=",
"doclet",
".",
"name",
"+",
"'('",
";",
"_",
".",
"each",
"(",
"doclet",
".",
"params",
",",
"function",
"(",
"p",
",",
"i",
")",
"{",
"if",
"(",
"!",
"(",
"p",
... | Write the function signature for the current function doclet.
@param {object} doclet function doclet | [
"Write",
"the",
"function",
"signature",
"for",
"the",
"current",
"function",
"doclet",
"."
] | 9d7c1d318ce535640588e7308917729c3849bc83 | https://github.com/HumanBrainProject/jsdoc-sphinx/blob/9d7c1d318ce535640588e7308917729c3849bc83/template/publish.js#L56-L89 |
36,563 | HumanBrainProject/jsdoc-sphinx | template/publish.js | generate | function generate(target, generator) {
return function(cb) {
logger.debug('generate', target);
generator(context, handleErrorCallback(function(err, data) {
if (err) {
logger.error('cannot generate ' + target);
logger.debug(err);
return;
}
write(target, data, cb);
... | javascript | function generate(target, generator) {
return function(cb) {
logger.debug('generate', target);
generator(context, handleErrorCallback(function(err, data) {
if (err) {
logger.error('cannot generate ' + target);
logger.debug(err);
return;
}
write(target, data, cb);
... | [
"function",
"generate",
"(",
"target",
",",
"generator",
")",
"{",
"return",
"function",
"(",
"cb",
")",
"{",
"logger",
".",
"debug",
"(",
"'generate'",
",",
"target",
")",
";",
"generator",
"(",
"context",
",",
"handleErrorCallback",
"(",
"function",
"(",... | Return a function that will asynchronously generate the documentation
and write the result.
@param {object} target the target
@param {function} generator the generator function to use
@return {function} the function that will build this part of the documentation | [
"Return",
"a",
"function",
"that",
"will",
"asynchronously",
"generate",
"the",
"documentation",
"and",
"write",
"the",
"result",
"."
] | 9d7c1d318ce535640588e7308917729c3849bc83 | https://github.com/HumanBrainProject/jsdoc-sphinx/blob/9d7c1d318ce535640588e7308917729c3849bc83/template/publish.js#L123-L135 |
36,564 | HumanBrainProject/jsdoc-sphinx | template/publish.js | registerLink | function registerLink(doclet) {
var url = helper.createLink(doclet);
helper.registerLink(doclet.longname, url);
doclet.rstLink = url.substr(0, url.length - helper.fileExtension.length);
// Parent link
if (!doclet.memberof) {
return;
}
var parent;
parent = helper.find(context.data, {longname: doclet... | javascript | function registerLink(doclet) {
var url = helper.createLink(doclet);
helper.registerLink(doclet.longname, url);
doclet.rstLink = url.substr(0, url.length - helper.fileExtension.length);
// Parent link
if (!doclet.memberof) {
return;
}
var parent;
parent = helper.find(context.data, {longname: doclet... | [
"function",
"registerLink",
"(",
"doclet",
")",
"{",
"var",
"url",
"=",
"helper",
".",
"createLink",
"(",
"doclet",
")",
";",
"helper",
".",
"registerLink",
"(",
"doclet",
".",
"longname",
",",
"url",
")",
";",
"doclet",
".",
"rstLink",
"=",
"url",
"."... | Add a link to the link registry.
@param {object} doclet the doclet to create a link for | [
"Add",
"a",
"link",
"to",
"the",
"link",
"registry",
"."
] | 9d7c1d318ce535640588e7308917729c3849bc83 | https://github.com/HumanBrainProject/jsdoc-sphinx/blob/9d7c1d318ce535640588e7308917729c3849bc83/template/publish.js#L141-L157 |
36,565 | HumanBrainProject/jsdoc-sphinx | template/publish.js | write | function write(relPath, data, cb) {
var target = path.join(context.destination, relPath);
mkdirp(path.dirname(target), handleErrorCallback(function() {
fs.writeFileSync(target, data);
handleErrorCallback(cb)(null, target);
logger.debug('file written: %s', target);
}));
} | javascript | function write(relPath, data, cb) {
var target = path.join(context.destination, relPath);
mkdirp(path.dirname(target), handleErrorCallback(function() {
fs.writeFileSync(target, data);
handleErrorCallback(cb)(null, target);
logger.debug('file written: %s', target);
}));
} | [
"function",
"write",
"(",
"relPath",
",",
"data",
",",
"cb",
")",
"{",
"var",
"target",
"=",
"path",
".",
"join",
"(",
"context",
".",
"destination",
",",
"relPath",
")",
";",
"mkdirp",
"(",
"path",
".",
"dirname",
"(",
"target",
")",
",",
"handleErr... | Handle all write operations.
@private
@param {string} relPath Relative path in the ouput directory
@param {string} data File content
@param {publish.writeCallback} cb node fs.write compatible callback
@return {undefined} | [
"Handle",
"all",
"write",
"operations",
"."
] | 9d7c1d318ce535640588e7308917729c3849bc83 | https://github.com/HumanBrainProject/jsdoc-sphinx/blob/9d7c1d318ce535640588e7308917729c3849bc83/template/publish.js#L168-L176 |
36,566 | HumanBrainProject/jsdoc-sphinx | template/publish.js | handleErrorCallback | function handleErrorCallback(cb) {
return function(err) {
if (err) {
logger.error(err);
return cb(err);
}
return cb.apply(this, arguments);
};
} | javascript | function handleErrorCallback(cb) {
return function(err) {
if (err) {
logger.error(err);
return cb(err);
}
return cb.apply(this, arguments);
};
} | [
"function",
"handleErrorCallback",
"(",
"cb",
")",
"{",
"return",
"function",
"(",
"err",
")",
"{",
"if",
"(",
"err",
")",
"{",
"logger",
".",
"error",
"(",
"err",
")",
";",
"return",
"cb",
"(",
"err",
")",
";",
"}",
"return",
"cb",
".",
"apply",
... | Gracefully handle errors in callback.
@param {Function} cb the callback to handle error for
@return {any} the result of cb | [
"Gracefully",
"handle",
"errors",
"in",
"callback",
"."
] | 9d7c1d318ce535640588e7308917729c3849bc83 | https://github.com/HumanBrainProject/jsdoc-sphinx/blob/9d7c1d318ce535640588e7308917729c3849bc83/template/publish.js#L183-L191 |
36,567 | datanews/tables | lib/auto-parser.js | autoParse | function autoParse(data, models, options) {
options = options || {};
var parsed = {};
// Go through each data point
_.each(data, function(value, field) {
var d = findField(field, models);
// Find field in
if (d) {
parsed[d.modelName] = parsed[d.modelName] || {};
parsed[d.modelName][d.f... | javascript | function autoParse(data, models, options) {
options = options || {};
var parsed = {};
// Go through each data point
_.each(data, function(value, field) {
var d = findField(field, models);
// Find field in
if (d) {
parsed[d.modelName] = parsed[d.modelName] || {};
parsed[d.modelName][d.f... | [
"function",
"autoParse",
"(",
"data",
",",
"models",
",",
"options",
")",
"{",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"var",
"parsed",
"=",
"{",
"}",
";",
"// Go through each data point",
"_",
".",
"each",
"(",
"data",
",",
"function",
"(",
"v... | Main function. Takes a row of incoming data and the models definition | [
"Main",
"function",
".",
"Takes",
"a",
"row",
"of",
"incoming",
"data",
"and",
"the",
"models",
"definition"
] | 4b33aa7a944a93260c49baecbb90345211cac789 | https://github.com/datanews/tables/blob/4b33aa7a944a93260c49baecbb90345211cac789/lib/auto-parser.js#L12-L28 |
36,568 | datanews/tables | lib/auto-parser.js | parse | function parse(value, field, options) {
options = options || {};
var parsed = utils.standardizeInput(value);
// Integer
if (field.type.key === "BOOLEAN") {
parsed = utils.toBoolean(parsed);
}
else if (field.type.key === "INTEGER") {
parsed = utils.toInteger(parsed);
}
else if (field.type.key ==... | javascript | function parse(value, field, options) {
options = options || {};
var parsed = utils.standardizeInput(value);
// Integer
if (field.type.key === "BOOLEAN") {
parsed = utils.toBoolean(parsed);
}
else if (field.type.key === "INTEGER") {
parsed = utils.toInteger(parsed);
}
else if (field.type.key ==... | [
"function",
"parse",
"(",
"value",
",",
"field",
",",
"options",
")",
"{",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"var",
"parsed",
"=",
"utils",
".",
"standardizeInput",
"(",
"value",
")",
";",
"// Integer",
"if",
"(",
"field",
".",
"type",
... | Parse value based on field definition | [
"Parse",
"value",
"based",
"on",
"field",
"definition"
] | 4b33aa7a944a93260c49baecbb90345211cac789 | https://github.com/datanews/tables/blob/4b33aa7a944a93260c49baecbb90345211cac789/lib/auto-parser.js#L31-L56 |
36,569 | datanews/tables | lib/auto-parser.js | findField | function findField(field, models) {
var found = false;
_.each(models, function(model) {
// Go through fields
_.each(model.fields, function(f) {
if (f.input === field) {
found = {
modelName: model.modelName,
field: f
};
}
});
});
return found;
} | javascript | function findField(field, models) {
var found = false;
_.each(models, function(model) {
// Go through fields
_.each(model.fields, function(f) {
if (f.input === field) {
found = {
modelName: model.modelName,
field: f
};
}
});
});
return found;
} | [
"function",
"findField",
"(",
"field",
",",
"models",
")",
"{",
"var",
"found",
"=",
"false",
";",
"_",
".",
"each",
"(",
"models",
",",
"function",
"(",
"model",
")",
"{",
"// Go through fields",
"_",
".",
"each",
"(",
"model",
".",
"fields",
",",
"... | Find definition in models | [
"Find",
"definition",
"in",
"models"
] | 4b33aa7a944a93260c49baecbb90345211cac789 | https://github.com/datanews/tables/blob/4b33aa7a944a93260c49baecbb90345211cac789/lib/auto-parser.js#L59-L75 |
36,570 | spreadshirt/rAppid.js-sprd | sprd/manager/ApiBasketManager.js | function (element, quantity, callback) {
if (this.$.basket) {
this.fixBasketCurrency();
var basketItem = this.$.basket.addElement(element, quantity);
element = basketItem.$.element;
var originId = this.$.originId;
... | javascript | function (element, quantity, callback) {
if (this.$.basket) {
this.fixBasketCurrency();
var basketItem = this.$.basket.addElement(element, quantity);
element = basketItem.$.element;
var originId = this.$.originId;
... | [
"function",
"(",
"element",
",",
"quantity",
",",
"callback",
")",
"{",
"if",
"(",
"this",
".",
"$",
".",
"basket",
")",
"{",
"this",
".",
"fixBasketCurrency",
"(",
")",
";",
"var",
"basketItem",
"=",
"this",
".",
"$",
".",
"basket",
".",
"addElement... | Adds an element to the basket without saving it
@param element
@param quantity
@param callback | [
"Adds",
"an",
"element",
"to",
"the",
"basket",
"without",
"saving",
"it"
] | b56f9f47fe01332f5bf885eaf4db59014f099019 | https://github.com/spreadshirt/rAppid.js-sprd/blob/b56f9f47fe01332f5bf885eaf4db59014f099019/sprd/manager/ApiBasketManager.js#L105-L124 | |
36,571 | spreadshirt/rAppid.js-sprd | sprd/manager/ApiBasketManager.js | function (basketItem, element, quantity, cb) {
this.extendElementWithLinks(element);
basketItem.set({
element: element,
quantity: quantity
});
basketItem.save(null, cb);
} | javascript | function (basketItem, element, quantity, cb) {
this.extendElementWithLinks(element);
basketItem.set({
element: element,
quantity: quantity
});
basketItem.save(null, cb);
} | [
"function",
"(",
"basketItem",
",",
"element",
",",
"quantity",
",",
"cb",
")",
"{",
"this",
".",
"extendElementWithLinks",
"(",
"element",
")",
";",
"basketItem",
".",
"set",
"(",
"{",
"element",
":",
"element",
",",
"quantity",
":",
"quantity",
"}",
")... | Updates the given basket item
@param {sprd.model.BasketItem} basketItem
@param {sprd.model.ConcreteElement} element
@param {Number} quantity
@param {Function} cb | [
"Updates",
"the",
"given",
"basket",
"item"
] | b56f9f47fe01332f5bf885eaf4db59014f099019 | https://github.com/spreadshirt/rAppid.js-sprd/blob/b56f9f47fe01332f5bf885eaf4db59014f099019/sprd/manager/ApiBasketManager.js#L145-L154 | |
36,572 | HumanBrainProject/jsdoc-sphinx | template/util/template.js | docletChildren | function docletChildren(context, doclet, kinds) {
if (!kinds) {
kinds = mainDocletKinds;
}
var results = {};
_.each(kinds, function(k) {
var q = {
kind: k,
memberof: doclet ? doclet.longname : {isUndefined: true}
};
results[k] = helper.find(context.data, q);
});
logger.debug((doc... | javascript | function docletChildren(context, doclet, kinds) {
if (!kinds) {
kinds = mainDocletKinds;
}
var results = {};
_.each(kinds, function(k) {
var q = {
kind: k,
memberof: doclet ? doclet.longname : {isUndefined: true}
};
results[k] = helper.find(context.data, q);
});
logger.debug((doc... | [
"function",
"docletChildren",
"(",
"context",
",",
"doclet",
",",
"kinds",
")",
"{",
"if",
"(",
"!",
"kinds",
")",
"{",
"kinds",
"=",
"mainDocletKinds",
";",
"}",
"var",
"results",
"=",
"{",
"}",
";",
"_",
".",
"each",
"(",
"kinds",
",",
"function",
... | Find the doclet children of a given type.
@param {object} context the jsdoc context
@param {object} doclet the doclet to use
@param {string} kinds the kind of children to return (function, module, ...)
@return {array} All the children doclet matching the parameters | [
"Find",
"the",
"doclet",
"children",
"of",
"a",
"given",
"type",
"."
] | 9d7c1d318ce535640588e7308917729c3849bc83 | https://github.com/HumanBrainProject/jsdoc-sphinx/blob/9d7c1d318ce535640588e7308917729c3849bc83/template/util/template.js#L25-L42 |
36,573 | HumanBrainProject/jsdoc-sphinx | template/util/template.js | example | function example() {
return function(data, render) {
var output = '.. code-block:: javascript\n';
var lines = render(data).split('\n');
logger.debug('line-0', data);
if (lines.length && lines[0].match(/^<caption>.*<\/caption>$/)) {
output += ' :caption: ' + lines.shift().slice(9, -10) + '\n';
... | javascript | function example() {
return function(data, render) {
var output = '.. code-block:: javascript\n';
var lines = render(data).split('\n');
logger.debug('line-0', data);
if (lines.length && lines[0].match(/^<caption>.*<\/caption>$/)) {
output += ' :caption: ' + lines.shift().slice(9, -10) + '\n';
... | [
"function",
"example",
"(",
")",
"{",
"return",
"function",
"(",
"data",
",",
"render",
")",
"{",
"var",
"output",
"=",
"'.. code-block:: javascript\\n'",
";",
"var",
"lines",
"=",
"render",
"(",
"data",
")",
".",
"split",
"(",
"'\\n'",
")",
";",
"logger... | Format a code example.
@return {string} the example output | [
"Format",
"a",
"code",
"example",
"."
] | 9d7c1d318ce535640588e7308917729c3849bc83 | https://github.com/HumanBrainProject/jsdoc-sphinx/blob/9d7c1d318ce535640588e7308917729c3849bc83/template/util/template.js#L48-L62 |
36,574 | spreadshirt/rAppid.js-sprd | sprd/data/IImageUploadService.js | function(data, restrictions, callback) {
var image;
if (restrictions instanceof Function) {
callback = restrictions;
restrictions = null;
}
if (data instanceof BlobImage || data instanceof iFrameUpload) {
image = data;
... | javascript | function(data, restrictions, callback) {
var image;
if (restrictions instanceof Function) {
callback = restrictions;
restrictions = null;
}
if (data instanceof BlobImage || data instanceof iFrameUpload) {
image = data;
... | [
"function",
"(",
"data",
",",
"restrictions",
",",
"callback",
")",
"{",
"var",
"image",
";",
"if",
"(",
"restrictions",
"instanceof",
"Function",
")",
"{",
"callback",
"=",
"restrictions",
";",
"restrictions",
"=",
"null",
";",
"}",
"if",
"(",
"data",
"... | Upload image from local file system
@param {sprd.entity.Image | sprd.data.iFrameUpload} data
@param {Object} restrictions
@param {Function} callback
@returns {sprd.type.UploadDesign} | [
"Upload",
"image",
"from",
"local",
"file",
"system"
] | b56f9f47fe01332f5bf885eaf4db59014f099019 | https://github.com/spreadshirt/rAppid.js-sprd/blob/b56f9f47fe01332f5bf885eaf4db59014f099019/sprd/data/IImageUploadService.js#L18-L47 | |
36,575 | datanews/tables | lib/output.js | function(on, options) {
options = options || {};
this.on = _.isUndefined(on) ? true : !!on;
this.useBullet = _.isUndefined(options.useBullet) ? true : !!options.useBullet;
// Use stderr since this is all just nice info to have and not data
// http://www.jstorimer.com/blogs/workingwithcode/7766119-when-to-us... | javascript | function(on, options) {
options = options || {};
this.on = _.isUndefined(on) ? true : !!on;
this.useBullet = _.isUndefined(options.useBullet) ? true : !!options.useBullet;
// Use stderr since this is all just nice info to have and not data
// http://www.jstorimer.com/blogs/workingwithcode/7766119-when-to-us... | [
"function",
"(",
"on",
",",
"options",
")",
"{",
"options",
"=",
"options",
"||",
"{",
"}",
";",
"this",
".",
"on",
"=",
"_",
".",
"isUndefined",
"(",
"on",
")",
"?",
"true",
":",
"!",
"!",
"on",
";",
"this",
".",
"useBullet",
"=",
"_",
".",
... | Create class for output, this is mostly used so that turning off and on output can be managed more easily | [
"Create",
"class",
"for",
"output",
"this",
"is",
"mostly",
"used",
"so",
"that",
"turning",
"off",
"and",
"on",
"output",
"can",
"be",
"managed",
"more",
"easily"
] | 4b33aa7a944a93260c49baecbb90345211cac789 | https://github.com/datanews/tables/blob/4b33aa7a944a93260c49baecbb90345211cac789/lib/output.js#L25-L42 | |
36,576 | tinwatchman/grawlix | util.js | function(settings, pluginInfo, options) {
// resolve plugin and plugin options
var plugin;
if (_.has(pluginInfo, 'plugin')) {
plugin = pluginInfo.plugin;
} else if (_.has(pluginInfo, 'module')) {
// make sure we don't load the same module twice
if (_.contains(settings.loadedModules, pluginInfo.modul... | javascript | function(settings, pluginInfo, options) {
// resolve plugin and plugin options
var plugin;
if (_.has(pluginInfo, 'plugin')) {
plugin = pluginInfo.plugin;
} else if (_.has(pluginInfo, 'module')) {
// make sure we don't load the same module twice
if (_.contains(settings.loadedModules, pluginInfo.modul... | [
"function",
"(",
"settings",
",",
"pluginInfo",
",",
"options",
")",
"{",
"// resolve plugin and plugin options",
"var",
"plugin",
";",
"if",
"(",
"_",
".",
"has",
"(",
"pluginInfo",
",",
"'plugin'",
")",
")",
"{",
"plugin",
"=",
"pluginInfo",
".",
"plugin",... | Loads the given plugin into the given GrawlixSettings object
@param {GrawlixSettings} settings GrawlixSettings object
@param {Object|Function} pluginInfo Either a factory function, a
GrawlixPlugin object, or an object
wrapping a factory function or
GrawlixPlugin with additional
plugin-specific config options
@param... | [
"Loads",
"the",
"given",
"plugin",
"into",
"the",
"given",
"GrawlixSettings",
"object"
] | 235cd9629992b97c62953b813d5034a9546211f1 | https://github.com/tinwatchman/grawlix/blob/235cd9629992b97c62953b813d5034a9546211f1/util.js#L126-L194 | |
36,577 | tinwatchman/grawlix | util.js | function(settings, filters, allowed) {
if (filters.length > 0) {
_.each(filters, function(obj) {
if (!_.has(obj, 'word')) {
return;
}
if (!_.has(obj, 'pattern')) {
// configure existing filter options
var filter = _.findWhere(settings.filters, { word: obj.word });
... | javascript | function(settings, filters, allowed) {
if (filters.length > 0) {
_.each(filters, function(obj) {
if (!_.has(obj, 'word')) {
return;
}
if (!_.has(obj, 'pattern')) {
// configure existing filter options
var filter = _.findWhere(settings.filters, { word: obj.word });
... | [
"function",
"(",
"settings",
",",
"filters",
",",
"allowed",
")",
"{",
"if",
"(",
"filters",
".",
"length",
">",
"0",
")",
"{",
"_",
".",
"each",
"(",
"filters",
",",
"function",
"(",
"obj",
")",
"{",
"if",
"(",
"!",
"_",
".",
"has",
"(",
"obj"... | Loads an array of filter objects into the GrawlixSettings object
@param {GrawlixSettings} settings GrawlixSettings object
@param {Array} filters Array of filter objects
@param {Array} allowed Whitelist of words to ignore
@return {GrawlixSettings} Settings objects with filters added | [
"Loads",
"an",
"array",
"of",
"filter",
"objects",
"into",
"the",
"GrawlixSettings",
"object"
] | 235cd9629992b97c62953b813d5034a9546211f1 | https://github.com/tinwatchman/grawlix/blob/235cd9629992b97c62953b813d5034a9546211f1/util.js#L204-L223 | |
36,578 | tinwatchman/grawlix | util.js | function(settings, styles) {
if (_.isArray(styles) && styles.length > 0) {
_.each(styles, function(obj) {
if (!_.has(obj, 'name')) {
return;
}
var style = _.findWhere(settings.styles, { name: obj.name });
if (!_.isUndefined(style)) {
style.configure(obj);
} else {
... | javascript | function(settings, styles) {
if (_.isArray(styles) && styles.length > 0) {
_.each(styles, function(obj) {
if (!_.has(obj, 'name')) {
return;
}
var style = _.findWhere(settings.styles, { name: obj.name });
if (!_.isUndefined(style)) {
style.configure(obj);
} else {
... | [
"function",
"(",
"settings",
",",
"styles",
")",
"{",
"if",
"(",
"_",
".",
"isArray",
"(",
"styles",
")",
"&&",
"styles",
".",
"length",
">",
"0",
")",
"{",
"_",
".",
"each",
"(",
"styles",
",",
"function",
"(",
"obj",
")",
"{",
"if",
"(",
"!",... | Loads an array of style objects into the given GrawlixSettings instance
@param {GrawlixSettings} settings GrawlixSettings object
@param {Array} styles Array of style objects
@return {GrawlixSettings} | [
"Loads",
"an",
"array",
"of",
"style",
"objects",
"into",
"the",
"given",
"GrawlixSettings",
"instance"
] | 235cd9629992b97c62953b813d5034a9546211f1 | https://github.com/tinwatchman/grawlix/blob/235cd9629992b97c62953b813d5034a9546211f1/util.js#L232-L247 | |
36,579 | tinwatchman/grawlix | util.js | function(str, filter, settings) {
// get filter style if provided
var style;
if (filter.hasStyle() && settings.style.isOverrideAllowed) {
style = _.findWhere(settings.styles, { name: filter.style });
}
if (_.isUndefined(style)) {
// if filter style not found, or no filter style set, use main style
... | javascript | function(str, filter, settings) {
// get filter style if provided
var style;
if (filter.hasStyle() && settings.style.isOverrideAllowed) {
style = _.findWhere(settings.styles, { name: filter.style });
}
if (_.isUndefined(style)) {
// if filter style not found, or no filter style set, use main style
... | [
"function",
"(",
"str",
",",
"filter",
",",
"settings",
")",
"{",
"// get filter style if provided",
"var",
"style",
";",
"if",
"(",
"filter",
".",
"hasStyle",
"(",
")",
"&&",
"settings",
".",
"style",
".",
"isOverrideAllowed",
")",
"{",
"style",
"=",
"_",... | Replaces a filter match in a string
@param {String} str Content string
@param {GrawlixFilter} filter GrawlixFilter object
@param {GrawlixSettings} settings GrawlixSettings object
@return {String} String with replacement applied | [
"Replaces",
"a",
"filter",
"match",
"in",
"a",
"string"
] | 235cd9629992b97c62953b813d5034a9546211f1 | https://github.com/tinwatchman/grawlix/blob/235cd9629992b97c62953b813d5034a9546211f1/util.js#L332-L358 | |
36,580 | tinwatchman/grawlix | util.js | function(str, filter, style) {
// determine length
var len;
if (filter.isExpandable) {
len = filter.getMatchLen(str);
} else {
len = filter.word.length;
}
// generate grawlix
if (!style.canRandomize()) {
return style.getFillGrawlix(len);
}
return style.getRandomGrawlix(len);
} | javascript | function(str, filter, style) {
// determine length
var len;
if (filter.isExpandable) {
len = filter.getMatchLen(str);
} else {
len = filter.word.length;
}
// generate grawlix
if (!style.canRandomize()) {
return style.getFillGrawlix(len);
}
return style.getRandomGrawlix(len);
} | [
"function",
"(",
"str",
",",
"filter",
",",
"style",
")",
"{",
"// determine length",
"var",
"len",
";",
"if",
"(",
"filter",
".",
"isExpandable",
")",
"{",
"len",
"=",
"filter",
".",
"getMatchLen",
"(",
"str",
")",
";",
"}",
"else",
"{",
"len",
"=",... | Replaces matched content with a grawlix, taking into account filter and style
settings.
@param {String} str Content string
@param {GrawlixFilter} filter Filter object
@param {GrawlixStyle} style Style object
@return {String} Grawlix replacement string | [
"Replaces",
"matched",
"content",
"with",
"a",
"grawlix",
"taking",
"into",
"account",
"filter",
"and",
"style",
"settings",
"."
] | 235cd9629992b97c62953b813d5034a9546211f1 | https://github.com/tinwatchman/grawlix/blob/235cd9629992b97c62953b813d5034a9546211f1/util.js#L369-L382 | |
36,581 | Download/webdb | dist/webdb.umd.js | indexOf | function indexOf(list, element, comparator) {
for (var i=0,item; item=list[i]; i++) {
if (equals(item, element, comparator)) {
return i;
}
}
return -1;
} | javascript | function indexOf(list, element, comparator) {
for (var i=0,item; item=list[i]; i++) {
if (equals(item, element, comparator)) {
return i;
}
}
return -1;
} | [
"function",
"indexOf",
"(",
"list",
",",
"element",
",",
"comparator",
")",
"{",
"for",
"(",
"var",
"i",
"=",
"0",
",",
"item",
";",
"item",
"=",
"list",
"[",
"i",
"]",
";",
"i",
"++",
")",
"{",
"if",
"(",
"equals",
"(",
"item",
",",
"element",... | returns index of given element in given list, using given comparator | [
"returns",
"index",
"of",
"given",
"element",
"in",
"given",
"list",
"using",
"given",
"comparator"
] | ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b | https://github.com/Download/webdb/blob/ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b/dist/webdb.umd.js#L666-L673 |
36,582 | Download/webdb | dist/webdb.umd.js | Tree | function Tree(options) {
this.root = new Node(this, options);
this.unique = options && options.unique || false;
this.compare = options && options.compare || compare;
this.equals = options && options.equals || equals;
this.keyType = options && options.keyType || undefined;
this.id = options && options.id || ... | javascript | function Tree(options) {
this.root = new Node(this, options);
this.unique = options && options.unique || false;
this.compare = options && options.compare || compare;
this.equals = options && options.equals || equals;
this.keyType = options && options.keyType || undefined;
this.id = options && options.id || ... | [
"function",
"Tree",
"(",
"options",
")",
"{",
"this",
".",
"root",
"=",
"new",
"Node",
"(",
"this",
",",
"options",
")",
";",
"this",
".",
"unique",
"=",
"options",
"&&",
"options",
".",
"unique",
"||",
"false",
";",
"this",
".",
"compare",
"=",
"o... | Creates a new Tree.
@param {Object} Optional options object
@param {Boolean} options.unique Whether to enforce a 'unique' constraint on the key or not
@param {Function} options.compare Optional key comparison function
@param {Function} options.equals Optional data equality comparison function
@param {Function} option... | [
"Creates",
"a",
"new",
"Tree",
"."
] | ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b | https://github.com/Download/webdb/blob/ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b/dist/webdb.umd.js#L950-L957 |
36,583 | Download/webdb | dist/webdb.umd.js | Node | function Node(tree, options) {
this.tree = tree;
if (options && options.parent) {this.parent = options.parent;}
if (options && options.hasOwnProperty('key')) { this.key = options.key; }
this.data = options && options.hasOwnProperty('value') ? [options.value] : [];
} | javascript | function Node(tree, options) {
this.tree = tree;
if (options && options.parent) {this.parent = options.parent;}
if (options && options.hasOwnProperty('key')) { this.key = options.key; }
this.data = options && options.hasOwnProperty('value') ? [options.value] : [];
} | [
"function",
"Node",
"(",
"tree",
",",
"options",
")",
"{",
"this",
".",
"tree",
"=",
"tree",
";",
"if",
"(",
"options",
"&&",
"options",
".",
"parent",
")",
"{",
"this",
".",
"parent",
"=",
"options",
".",
"parent",
";",
"}",
"if",
"(",
"options",
... | Creates a new Node.
@param {Object} Optional options object.
@param {Node} options.parent Initialize this Node's parent
@param {Key} options.key Initialize this Node's key
@param {Value} options.value Initialize this Node's value | [
"Creates",
"a",
"new",
"Node",
"."
] | ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b | https://github.com/Download/webdb/blob/ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b/dist/webdb.umd.js#L979-L984 |
36,584 | Download/webdb | dist/webdb.umd.js | getLowerBoundMatcher | function getLowerBoundMatcher(compare, query) {
// No lower bound
if (!query.hasOwnProperty('$gt') && !query.hasOwnProperty('$gte')) {
return function(){return true;};
}
if (query.hasOwnProperty('$gt') && query.hasOwnProperty('$gte')) {
if (compare(query.$gte, query.$gt) === 0) {
return function (key)... | javascript | function getLowerBoundMatcher(compare, query) {
// No lower bound
if (!query.hasOwnProperty('$gt') && !query.hasOwnProperty('$gte')) {
return function(){return true;};
}
if (query.hasOwnProperty('$gt') && query.hasOwnProperty('$gte')) {
if (compare(query.$gte, query.$gt) === 0) {
return function (key)... | [
"function",
"getLowerBoundMatcher",
"(",
"compare",
",",
"query",
")",
"{",
"// No lower bound",
"if",
"(",
"!",
"query",
".",
"hasOwnProperty",
"(",
"'$gt'",
")",
"&&",
"!",
"query",
".",
"hasOwnProperty",
"(",
"'$gte'",
")",
")",
"{",
"return",
"function",... | Return a function that tells whether a given key matches a lower bound | [
"Return",
"a",
"function",
"that",
"tells",
"whether",
"a",
"given",
"key",
"matches",
"a",
"lower",
"bound"
] | ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b | https://github.com/Download/webdb/blob/ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b/dist/webdb.umd.js#L1213-L1233 |
36,585 | Download/webdb | dist/webdb.umd.js | getUpperBoundMatcher | function getUpperBoundMatcher(compare, query) {
// No lower bound
if (!query.hasOwnProperty('$lt') && !query.hasOwnProperty('$lte')) {
return function () { return true; };
}
if (query.hasOwnProperty('$lt') && query.hasOwnProperty('$lte')) {
if (compare(query.$lte, query.$lt) === 0) {
return function (... | javascript | function getUpperBoundMatcher(compare, query) {
// No lower bound
if (!query.hasOwnProperty('$lt') && !query.hasOwnProperty('$lte')) {
return function () { return true; };
}
if (query.hasOwnProperty('$lt') && query.hasOwnProperty('$lte')) {
if (compare(query.$lte, query.$lt) === 0) {
return function (... | [
"function",
"getUpperBoundMatcher",
"(",
"compare",
",",
"query",
")",
"{",
"// No lower bound",
"if",
"(",
"!",
"query",
".",
"hasOwnProperty",
"(",
"'$lt'",
")",
"&&",
"!",
"query",
".",
"hasOwnProperty",
"(",
"'$lte'",
")",
")",
"{",
"return",
"function",... | Return a function that tells whether a given key matches an upper bound | [
"Return",
"a",
"function",
"that",
"tells",
"whether",
"a",
"given",
"key",
"matches",
"an",
"upper",
"bound"
] | ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b | https://github.com/Download/webdb/blob/ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b/dist/webdb.umd.js#L1238-L1258 |
36,586 | Download/webdb | dist/webdb.umd.js | betweenBounds | function betweenBounds(node, query, lbm, ubm) {
var res = [];
if (!node.hasOwnProperty('key')) { return res; } // Empty tree
lbm = lbm || getLowerBoundMatcher(node.tree.compare, query);
ubm = ubm || getUpperBoundMatcher(node.tree.compare, query);
if (lbm(node.key) && node.left) { res.push.apply(res, between... | javascript | function betweenBounds(node, query, lbm, ubm) {
var res = [];
if (!node.hasOwnProperty('key')) { return res; } // Empty tree
lbm = lbm || getLowerBoundMatcher(node.tree.compare, query);
ubm = ubm || getUpperBoundMatcher(node.tree.compare, query);
if (lbm(node.key) && node.left) { res.push.apply(res, between... | [
"function",
"betweenBounds",
"(",
"node",
",",
"query",
",",
"lbm",
",",
"ubm",
")",
"{",
"var",
"res",
"=",
"[",
"]",
";",
"if",
"(",
"!",
"node",
".",
"hasOwnProperty",
"(",
"'key'",
")",
")",
"{",
"return",
"res",
";",
"}",
"// Empty tree",
"lbm... | Get all data for a key between bounds
Return it in key order
@param {Node} Node to execute on
@param {Object} query Mongo-style query where keys are $lt, $lte, $gt or $gte (other keys are not considered)
@param {Functions} lbm/ubm matching functions calculated at the first recursive step | [
"Get",
"all",
"data",
"for",
"a",
"key",
"between",
"bounds",
"Return",
"it",
"in",
"key",
"order"
] | ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b | https://github.com/Download/webdb/blob/ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b/dist/webdb.umd.js#L1267-L1276 |
36,587 | Download/webdb | dist/webdb.umd.js | balanceFactor | function balanceFactor(node) {
return (node.left ? node.left.height : 0) - (node.right ? node.right.height : 0);
} | javascript | function balanceFactor(node) {
return (node.left ? node.left.height : 0) - (node.right ? node.right.height : 0);
} | [
"function",
"balanceFactor",
"(",
"node",
")",
"{",
"return",
"(",
"node",
".",
"left",
"?",
"node",
".",
"left",
".",
"height",
":",
"0",
")",
"-",
"(",
"node",
".",
"right",
"?",
"node",
".",
"right",
".",
"height",
":",
"0",
")",
";",
"}"
] | Return the balance factor of the given node | [
"Return",
"the",
"balance",
"factor",
"of",
"the",
"given",
"node"
] | ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b | https://github.com/Download/webdb/blob/ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b/dist/webdb.umd.js#L1281-L1283 |
36,588 | Download/webdb | dist/webdb.umd.js | rightTooSmall | function rightTooSmall(node) {
if (balanceFactor(node) <= 1) { return node; } // Right is not too small, don't change
if (balanceFactor(node.left) < 0) {leftRotation(node.left);}
return rightRotation(node);
} | javascript | function rightTooSmall(node) {
if (balanceFactor(node) <= 1) { return node; } // Right is not too small, don't change
if (balanceFactor(node.left) < 0) {leftRotation(node.left);}
return rightRotation(node);
} | [
"function",
"rightTooSmall",
"(",
"node",
")",
"{",
"if",
"(",
"balanceFactor",
"(",
"node",
")",
"<=",
"1",
")",
"{",
"return",
"node",
";",
"}",
"// Right is not too small, don't change",
"if",
"(",
"balanceFactor",
"(",
"node",
".",
"left",
")",
"<",
"0... | Modify the tree if its right subtree is too small compared to the left
Return the new root if any | [
"Modify",
"the",
"tree",
"if",
"its",
"right",
"subtree",
"is",
"too",
"small",
"compared",
"to",
"the",
"left",
"Return",
"the",
"new",
"root",
"if",
"any"
] | ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b | https://github.com/Download/webdb/blob/ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b/dist/webdb.umd.js#L1351-L1355 |
36,589 | Download/webdb | dist/webdb.umd.js | leftTooSmall | function leftTooSmall(node) {
if (balanceFactor(node) >= -1) { return node; } // Left is not too small, don't change
if (balanceFactor(node.right) > 0) {rightRotation(node.right);}
return leftRotation(node);
} | javascript | function leftTooSmall(node) {
if (balanceFactor(node) >= -1) { return node; } // Left is not too small, don't change
if (balanceFactor(node.right) > 0) {rightRotation(node.right);}
return leftRotation(node);
} | [
"function",
"leftTooSmall",
"(",
"node",
")",
"{",
"if",
"(",
"balanceFactor",
"(",
"node",
")",
">=",
"-",
"1",
")",
"{",
"return",
"node",
";",
"}",
"// Left is not too small, don't change",
"if",
"(",
"balanceFactor",
"(",
"node",
".",
"right",
")",
">"... | Modify the tree if its left subtree is too small compared to the right
Return the new root if any | [
"Modify",
"the",
"tree",
"if",
"its",
"left",
"subtree",
"is",
"too",
"small",
"compared",
"to",
"the",
"right",
"Return",
"the",
"new",
"root",
"if",
"any"
] | ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b | https://github.com/Download/webdb/blob/ca93fdc67dfba04d3adfb94b4c7e877d9ed3ec3b/dist/webdb.umd.js#L1361-L1365 |
36,590 | datanews/tables | lib/tables.js | function(data) {
if (thisTables.options.stdin) {
thisTables.guessBuffers.push(data);
}
bar.tick(data.length);
} | javascript | function(data) {
if (thisTables.options.stdin) {
thisTables.guessBuffers.push(data);
}
bar.tick(data.length);
} | [
"function",
"(",
"data",
")",
"{",
"if",
"(",
"thisTables",
".",
"options",
".",
"stdin",
")",
"{",
"thisTables",
".",
"guessBuffers",
".",
"push",
"(",
"data",
")",
";",
"}",
"bar",
".",
"tick",
"(",
"data",
".",
"length",
")",
";",
"}"
] | Create functions for streams so that we can remove them if needed | [
"Create",
"functions",
"for",
"streams",
"so",
"that",
"we",
"can",
"remove",
"them",
"if",
"needed"
] | 4b33aa7a944a93260c49baecbb90345211cac789 | https://github.com/datanews/tables/blob/4b33aa7a944a93260c49baecbb90345211cac789/lib/tables.js#L363-L369 | |
36,591 | Tixit/observe | observe.js | unionizeList | function unionizeList(array, start, count, union) {
var internalObservees = [] // list of observees and their property path
if(union !== undefined) {
var afterEnd = start+count
for(var n=start; n<afterEnd; n++) {
internalObservees.push({obj: array[n], index: n})
if(union ... | javascript | function unionizeList(array, start, count, union) {
var internalObservees = [] // list of observees and their property path
if(union !== undefined) {
var afterEnd = start+count
for(var n=start; n<afterEnd; n++) {
internalObservees.push({obj: array[n], index: n})
if(union ... | [
"function",
"unionizeList",
"(",
"array",
",",
"start",
",",
"count",
",",
"union",
")",
"{",
"var",
"internalObservees",
"=",
"[",
"]",
"// list of observees and their property path",
"if",
"(",
"union",
"!==",
"undefined",
")",
"{",
"var",
"afterEnd",
"=",
"... | sets a slice of elements to their subjects and returns the original observee objects along with their indexes | [
"sets",
"a",
"slice",
"of",
"elements",
"to",
"their",
"subjects",
"and",
"returns",
"the",
"original",
"observee",
"objects",
"along",
"with",
"their",
"indexes"
] | 4a51a2d419a7a7336b97266ea2934f44c513d77b | https://github.com/Tixit/observe/blob/4a51a2d419a7a7336b97266ea2934f44c513d77b/observe.js#L384-L396 |
36,592 | Tixit/observe | observe.js | unionizeListEvents | function unionizeListEvents(that, internalObservees, propertyList, collapse) {
for(var n=0; n<internalObservees.length; n++) {
unionizeEvents(that, internalObservees[n].obj, propertyList.concat(internalObservees[n].index+''), collapse)
}
} | javascript | function unionizeListEvents(that, internalObservees, propertyList, collapse) {
for(var n=0; n<internalObservees.length; n++) {
unionizeEvents(that, internalObservees[n].obj, propertyList.concat(internalObservees[n].index+''), collapse)
}
} | [
"function",
"unionizeListEvents",
"(",
"that",
",",
"internalObservees",
",",
"propertyList",
",",
"collapse",
")",
"{",
"for",
"(",
"var",
"n",
"=",
"0",
";",
"n",
"<",
"internalObservees",
".",
"length",
";",
"n",
"++",
")",
"{",
"unionizeEvents",
"(",
... | runs unionizeEvents for elements in a list internalObservees should be the result from `unionizeList` | [
"runs",
"unionizeEvents",
"for",
"elements",
"in",
"a",
"list",
"internalObservees",
"should",
"be",
"the",
"result",
"from",
"unionizeList"
] | 4a51a2d419a7a7336b97266ea2934f44c513d77b | https://github.com/Tixit/observe/blob/4a51a2d419a7a7336b97266ea2934f44c513d77b/observe.js#L400-L404 |
36,593 | HBYoon/node-mysql-transaction | lib/chain.js | chainQueryRun | function chainQueryRun (safeCon, arg, currentObj) {
objAdder(safeCon, currentObj);
var stream;
try {
stream = safeCon.query.apply(safeCon, arg);
} catch(e) {
return currentObj.rollback(e);
}
autoErrorRollback(currentObj);
onewayEventConnect(stream, currentObj);
if (currentObj._autoCo... | javascript | function chainQueryRun (safeCon, arg, currentObj) {
objAdder(safeCon, currentObj);
var stream;
try {
stream = safeCon.query.apply(safeCon, arg);
} catch(e) {
return currentObj.rollback(e);
}
autoErrorRollback(currentObj);
onewayEventConnect(stream, currentObj);
if (currentObj._autoCo... | [
"function",
"chainQueryRun",
"(",
"safeCon",
",",
"arg",
",",
"currentObj",
")",
"{",
"objAdder",
"(",
"safeCon",
",",
"currentObj",
")",
";",
"var",
"stream",
";",
"try",
"{",
"stream",
"=",
"safeCon",
".",
"query",
".",
"apply",
"(",
"safeCon",
",",
... | main procedure function | [
"main",
"procedure",
"function"
] | a63ad00a93afb59dfab06218b89222248ba872a1 | https://github.com/HBYoon/node-mysql-transaction/blob/a63ad00a93afb59dfab06218b89222248ba872a1/lib/chain.js#L195-L224 |
36,594 | jtrussell/bedecked | lib/bedecked.js | function(prezContents, cb) {
var slideChunksPreTpl = prezContents.toString().split(slideBreakAt);
_.forEach(slideChunksPreTpl, function(chunk) {
opts.slides.push({
preHtml: chunk,
indented: opts.slides.length && isIndented(chunk)
});
});
cb(null, opts)... | javascript | function(prezContents, cb) {
var slideChunksPreTpl = prezContents.toString().split(slideBreakAt);
_.forEach(slideChunksPreTpl, function(chunk) {
opts.slides.push({
preHtml: chunk,
indented: opts.slides.length && isIndented(chunk)
});
});
cb(null, opts)... | [
"function",
"(",
"prezContents",
",",
"cb",
")",
"{",
"var",
"slideChunksPreTpl",
"=",
"prezContents",
".",
"toString",
"(",
")",
".",
"split",
"(",
"slideBreakAt",
")",
";",
"_",
".",
"forEach",
"(",
"slideChunksPreTpl",
",",
"function",
"(",
"chunk",
")"... | Split the prez markup into slides | [
"Split",
"the",
"prez",
"markup",
"into",
"slides"
] | 2c7d53642327e621c027bf44395d2a62333ee1bd | https://github.com/jtrussell/bedecked/blob/2c7d53642327e621c027bf44395d2a62333ee1bd/lib/bedecked.js#L120-L129 | |
36,595 | spreadshirt/rAppid.js-sprd | sprd/view/ImageUploadClass.js | function (e) {
if (this.$.enabled) {
this.removeClass('drag-over');
if (e && e.$) {
e = e.$;
if (e.dataTransfer && e.dataTransfer.files.length) {
for (var i = 0; i < e.dataTransfer.files.... | javascript | function (e) {
if (this.$.enabled) {
this.removeClass('drag-over');
if (e && e.$) {
e = e.$;
if (e.dataTransfer && e.dataTransfer.files.length) {
for (var i = 0; i < e.dataTransfer.files.... | [
"function",
"(",
"e",
")",
"{",
"if",
"(",
"this",
".",
"$",
".",
"enabled",
")",
"{",
"this",
".",
"removeClass",
"(",
"'drag-over'",
")",
";",
"if",
"(",
"e",
"&&",
"e",
".",
"$",
")",
"{",
"e",
"=",
"e",
".",
"$",
";",
"if",
"(",
"e",
... | An image has been dropped into the design window.
@param {Event} e
@returns {boolean} | [
"An",
"image",
"has",
"been",
"dropped",
"into",
"the",
"design",
"window",
"."
] | b56f9f47fe01332f5bf885eaf4db59014f099019 | https://github.com/spreadshirt/rAppid.js-sprd/blob/b56f9f47fe01332f5bf885eaf4db59014f099019/sprd/view/ImageUploadClass.js#L71-L88 | |
36,596 | spreadshirt/rAppid.js-sprd | sprd/view/ImageUploadClass.js | function (file, callback) {
var self = this,
reader = new FileReader();
var uploadDesign = this.$.imageUploadService.upload(file, function (err) {
if (!err) {
self.trigger("uploadComplete", {
up... | javascript | function (file, callback) {
var self = this,
reader = new FileReader();
var uploadDesign = this.$.imageUploadService.upload(file, function (err) {
if (!err) {
self.trigger("uploadComplete", {
up... | [
"function",
"(",
"file",
",",
"callback",
")",
"{",
"var",
"self",
"=",
"this",
",",
"reader",
"=",
"new",
"FileReader",
"(",
")",
";",
"var",
"uploadDesign",
"=",
"this",
".",
"$",
".",
"imageUploadService",
".",
"upload",
"(",
"file",
",",
"function"... | Upload image to Spreadshirt platform.
@param {File} file
@param {Function} [callback]
@returns {sprd.type.UploadDesign} | [
"Upload",
"image",
"to",
"Spreadshirt",
"platform",
"."
] | b56f9f47fe01332f5bf885eaf4db59014f099019 | https://github.com/spreadshirt/rAppid.js-sprd/blob/b56f9f47fe01332f5bf885eaf4db59014f099019/sprd/view/ImageUploadClass.js#L143-L179 | |
36,597 | iriscouch/fastcgi | fastcgi.js | on_record | function on_record(record) {
var parser = this
//LOG.info('Record %s: %s', RECORD_NAMES[record.header.type], record.header.recordId)
record.bodies = parser.bodies
parser.bodies = []
record.body_utf8 = function() {
return this.bodies
.map(function(data) { return data.toString(... | javascript | function on_record(record) {
var parser = this
//LOG.info('Record %s: %s', RECORD_NAMES[record.header.type], record.header.recordId)
record.bodies = parser.bodies
parser.bodies = []
record.body_utf8 = function() {
return this.bodies
.map(function(data) { return data.toString(... | [
"function",
"on_record",
"(",
"record",
")",
"{",
"var",
"parser",
"=",
"this",
"//LOG.info('Record %s: %s', RECORD_NAMES[record.header.type], record.header.recordId)",
"record",
".",
"bodies",
"=",
"parser",
".",
"bodies",
"parser",
".",
"bodies",
"=",
"[",
"]",
"rec... | Handle incoming responder records. | [
"Handle",
"incoming",
"responder",
"records",
"."
] | 960d540695d702931ffa587ead48d05d0bb61826 | https://github.com/iriscouch/fastcgi/blob/960d540695d702931ffa587ead48d05d0bb61826/fastcgi.js#L334-L380 |
36,598 | spreadshirt/rAppid.js-sprd | sprd/data/LabelService.js | function (object, label, callback) {
var labelObject = this.$.dataSource.createEntity(ObjectLabel);
labelObject.set({
object: object,
objectType: this.$.dataSource.createEntity(ObjectType, this.getObjectTypeIdForElement(object)),
... | javascript | function (object, label, callback) {
var labelObject = this.$.dataSource.createEntity(ObjectLabel);
labelObject.set({
object: object,
objectType: this.$.dataSource.createEntity(ObjectType, this.getObjectTypeIdForElement(object)),
... | [
"function",
"(",
"object",
",",
"label",
",",
"callback",
")",
"{",
"var",
"labelObject",
"=",
"this",
".",
"$",
".",
"dataSource",
".",
"createEntity",
"(",
"ObjectLabel",
")",
";",
"labelObject",
".",
"set",
"(",
"{",
"object",
":",
"object",
",",
"o... | Labels an object with the given label
@param {sprd.model.Model} object
@param {sprd.model.Label} label
@param {Function} callback | [
"Labels",
"an",
"object",
"with",
"the",
"given",
"label"
] | b56f9f47fe01332f5bf885eaf4db59014f099019 | https://github.com/spreadshirt/rAppid.js-sprd/blob/b56f9f47fe01332f5bf885eaf4db59014f099019/sprd/data/LabelService.js#L111-L122 | |
36,599 | Rohail1/iplocate | index.js | middlewareFunction | function middlewareFunction (req,res,next){
return ipToLocation(req.ip)
.then(function (location) {
req.location = location;
next();
})
.catch(function (error) {
req.locationError = error;
next();
})
} | javascript | function middlewareFunction (req,res,next){
return ipToLocation(req.ip)
.then(function (location) {
req.location = location;
next();
})
.catch(function (error) {
req.locationError = error;
next();
})
} | [
"function",
"middlewareFunction",
"(",
"req",
",",
"res",
",",
"next",
")",
"{",
"return",
"ipToLocation",
"(",
"req",
".",
"ip",
")",
".",
"then",
"(",
"function",
"(",
"location",
")",
"{",
"req",
".",
"location",
"=",
"location",
";",
"next",
"(",
... | Middleware Function for the IP
@param {Request} req
@param {Response} res
@param {function} next | [
"Middleware",
"Function",
"for",
"the",
"IP"
] | 7272e3b085877288aed714119f9e50bf9d08a6d6 | https://github.com/Rohail1/iplocate/blob/7272e3b085877288aed714119f9e50bf9d08a6d6/index.js#L46-L58 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.