module.exports = (base, mixins...) ->
  class Mixed extends base

  for mixin in mixins by -1
    for own name, method of mixin::
      Mixed::[name] = method

    for own name, method of mixin
      Mixed[name] = method

  Mixed
