79 lines
2.1 KiB
JavaScript
79 lines
2.1 KiB
JavaScript
// CORE module, abstracts environment-specifics
|
|
var CORE = function(){
|
|
|
|
/*
|
|
* blatantly ripped off from Douglas Crockford
|
|
*/
|
|
var modifyLanguage = function(){
|
|
Function.prototype.method = function (name, func) {
|
|
if (!this.prototype[name]){
|
|
this.prototype[name] = func;
|
|
return this;
|
|
}
|
|
};
|
|
Function.method('inherits', function(Parent){
|
|
this.prototype = new Parent();
|
|
return this;
|
|
});
|
|
Array.method('each', function(f, index){
|
|
for (var i=0; i<this.length; i++){
|
|
f(this[i], i);
|
|
}
|
|
});
|
|
Array.method('reduce', function(f, value){
|
|
this.each(function(item){
|
|
value = f(item, value);
|
|
});
|
|
return value;
|
|
});
|
|
Array.method('contains', function(test){
|
|
var contains = false;
|
|
this.each(function(item){
|
|
if (item === test){
|
|
contains = true;
|
|
return false;
|
|
}
|
|
});
|
|
return contains;
|
|
});
|
|
Object.create = function(o){
|
|
var F = function(){};
|
|
F.prototype = o;
|
|
return new F();
|
|
};
|
|
Object.mixin = function(obj,mixin){
|
|
for (name in mixin){
|
|
if (mixin.hasOwnProperty(name)){
|
|
obj[name] = mixin[name];
|
|
}
|
|
}
|
|
return obj;
|
|
};
|
|
};
|
|
|
|
modifyLanguage();
|
|
|
|
return {
|
|
|
|
out : function(output){
|
|
//implemented by env
|
|
},
|
|
|
|
require : function(toImport){
|
|
this.out("'require' not implemented!");
|
|
},
|
|
|
|
debug : function(a, deep){
|
|
this.out( a + ', typeof ' + typeof a);
|
|
for (var name in a){
|
|
if (deep || (a.hasOwnProperty(name))){
|
|
if (typeof a[name] === 'function'){
|
|
this.out(name + ': [a method]');
|
|
} else {
|
|
this.out(name + ':' + a[name]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}(); |