Skip to content

Instantly share code, notes, and snippets.

@daogurtsov
Created December 8, 2013 21:31
Show Gist options
  • Save daogurtsov/7864095 to your computer and use it in GitHub Desktop.
Save daogurtsov/7864095 to your computer and use it in GitHub Desktop.
javascipt basic mixin
Object.prototype.mixin = function(module) {
for (method in module.prototype) {
if (module.prototype.hasOwnProperty(method))
this.prototype[method] = module.prototype[method]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment