Skip to content

Instantly share code, notes, and snippets.

View twyatt's full-sized avatar

Travis Wyatt twyatt

View GitHub Profile
@twyatt
twyatt / gist:206664
Created October 10, 2009 05:58 — forked from jaredatron/face
clear();
Object.extend = function(destination, source) {
for (var property in source)
destination[property] = source[property];
return destination;
};
Object.cloneWithInheritance = function(source, extension){
var sourceClass = function(){};