This file contains hidden or 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
| /** | |
| * | |
| * [Array.removeFirstMatch.removeLastMatch.removeEveryMatch.js] | |
| * | |
| * Implementation of 3 condition-function based, prototypal `Array` methods | |
| * which do mutate each their processed array reference. | |
| * | |
| * - `Array.prototype.removeFirstMatch`, | |
| * - `Array.prototype.removeLastMatch`, | |
| * - `Array.prototype.removeEveryMatch` |
This file contains hidden or 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
| trait customTrait { | |
| use { Trait_A, Trait_B, Trait_C } | |
| apply all | |
| apply all without { methodName_z, methodName_y } | |
| apply { Trait_A } |
This file contains hidden or 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
| // | |
| // | |
| // Just Another "Trait Composition Language" Library for ECMAScript | |
| // | |
| // | |
| (function (global) { // module (pattern). | |
This file contains hidden or 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
| (function (Object) { | |
| var | |
| expose_internal_value = Object.prototype.valueOf, | |
| NULL_VALUE = null, |
This file contains hidden or 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
| (function (Function, Array) { | |
| var | |
| function_prototype = Function.prototype, | |
| isFunction = (function (TYPEOF_FUNCTION) { | |
| return function (type) { | |
| return ((typeof type == TYPEOF_FUNCTION) | |
| && (typeof type.call == TYPEOF_FUNCTION) |
This file contains hidden or 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
| composable("composites.Range", function (require, global) { | |
| "use strict"; | |
| require("environment_extended_introspective_core"); |
This file contains hidden or 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
| (function (Object, Array) { | |
| "use strict"; | |
| var | |
| object_prototype = Object.prototype, | |
| isObject = function is_object (type) { |
This file contains hidden or 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
| /** | |
| * | |
| * [Array.reject.js] | |
| * | |
| * Implementation of a condition-function based, prototypal `Array` method | |
| * which returns rejected array items and does mutate its processed array. | |
| * | |
| * - `Array.prototype.reject` | |
| * | |
| */ |
This file contains hidden or 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
| (function (global, moduleSystemName, namespace) { | |
| "use strict"; | |
| var | |
| moduleSystem, // the "custom named" module system core. |
This file contains hidden or 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
| /** | |
| * | |
| * [Array.interlock.js] | |
| * | |
| * Implementation of a prototypal `Array` method which, | |
| * from both processed iterable structures, interlocks | |
| * each item of same index, pairwise and repeatedly | |
| * into a new array. | |
| * Sparse locations on either side will be recognized | |
| * and accordingly (re)assigned. |