4 lines
78 B
JavaScript
4 lines
78 B
JavaScript
export const mixin = (target, mixin) => {
|
|
Object.assign(target, mixin)
|
|
}
|
|
|