UNPKG
burger
Version:
latest (0.0.1)
0.0.1
A lightweight turbolinks friendly JavaScript library
burger
/
src
/
util
/
mixin.coffee
12 lines
(8 loc)
•
230 B
text/coffeescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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