KevinSmarts 7ed611577f New syntax packages for Atom, Sublime and VS Code from Xorgroth (F95 zone) | 6 年之前 | |
---|---|---|
.. | ||
lib | 6 年之前 | |
LICENSE.md | 6 年之前 | |
README.md | 6 年之前 | |
package.json | 6 年之前 |
To create a mixin, subclass mixto:
Mixin = require 'mixto'
class MyMixin extends Mixin
@classMethod: -> console.log("foo")
instanceMethod: -> console.log("bar")
Then mix into classes with .includeInto
:
class MyClass
MyMixin.includeInto(this)
MyClass.classMethod()
(new MyClass).instanceMethod()
Or extend individual objects with .extend
:
myObject = {a: 1, b: 2}
MyMixin.extend(myObject)
myObject.instanceMethod()
Or build standalone instances of your 'mixin':
standalone = new MyMixin
standalone.instanceMethod()