This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Provides Event Emitter functionality | |
* | |
* Allows decoupling existing classes/prototypes | |
* Events are emitted in Sync. | |
* | |
* Usage | |
* @example | |
* | |
* function YourClass() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Tiny Require | |
*/ | |
/** | |
* Before the module has finished downloading/evaluating, | |
* the callback provided is executed async. Once loaded, all | |
* callbacks will be executed immediately. | |
* | |
* A module is detected when it is available in the window object. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Provides BaseN class | |
* | |
* Encode and decode numbers as any base | |
* | |
* @example | |
* | |
* var baseX = new BaseN() // Default base is 65,535 | |
* var sample = 9007199254740991 | |
* var encoded = baseX.encode(sample) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Renames and existing function. | |
* | |
* @private | |
* @method rename_function | |
* @param name {String} | |
* @param fn {Function} | |
* @return Function | |
*/ | |
function rename_function(name, fn) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Provides an EventEmitter Trait | |
* | |
* USAGE @example | |
* | |
* function YourClass(){ | |
* EventEmitterTrait(this) // or any object | |
* } | |
* | |
* var yourObject = new YourClass() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Provides crc2D function. | |
* | |
* A Cyclic Redundancy Checksum designed for small 2D signed coordinates. | |
* | |
* Based on: https://github.com/alexgorbatchev/node-crc/blob/master/src/crc16.js | |
* | |
* The algorithm provides up to a maximum of 65,536 Unique Values. For x and y, | |
* this means that up to a byte (256 values) can be guaranteed to not collide. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Provides GameLoop Trait | |
* | |
* Based on: http://nokarma.org/2011/02/02/javascript-game-development-the-game-loop/ | |
* | |
* @required EventEmitterTrait | |
* @module Traits | |
* @submodule GameLoopTrait | |
*/ | |
var GameLoopTrait = (function(EventEmiterTrait, requestAnimationFrame) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Provides Bresenham Line Algorithm in a function. | |
* | |
* @reference http://rosettacode.org/wiki/Bitmap/Bresenham's_line_algorithm#JavaScript | |
*/ | |
/** | |
* @method bresenham_line | |
* @param x1 {Number} | |
* @param y1 {Number} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Count the occurrences of substring in a string; | |
* | |
* @method occurrences | |
* @param haystack {String} | |
* @param needle {String} | |
* @param [allowOverlapping=false] {Boolean} | |
* @author Vitim.us http://stackoverflow.com/questions/4009756/how-to-count-string-occurrence-in-string/7924240#7924240 | |
*/ | |
function occurrences(haystack, needle, allowOverlapping) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Provides multiline function | |
* | |
* Allows you to write strings with line breaks without backtick support. | |
* | |
* Simply provide a function with your multi lines script inside a | |
* multi line comment. | |
* | |
* Usage @example | |
* var result = multiline(function(){ |
OlderNewer