Skip to content

Instantly share code, notes, and snippets.

@cicorias
Created March 1, 2016 15:55
Show Gist options
  • Save cicorias/166e01140b9a940308a4 to your computer and use it in GitHub Desktop.
Save cicorias/166e01140b9a940308a4 to your computer and use it in GitHub Desktop.
an inherit using lodash - stolen from here; https://github.com/lodash/lodash/issues/663
_.mixin({
'inherit': function(child, base, props) {
child.prototype = _.create(base.prototype, _.assign({
'_super': base.prototype,
'constructor': child
}, props));
return child;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment