mixto

WebJar for mixto

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

mixto
Последняя версия

Последняя версия

1.0.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

mixto
WebJar for mixto
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/atom/mixto

Скачать mixto

Имя Файла Размер
mixto-1.0.0.pom
mixto-1.0.0.jar 4 KB
mixto-1.0.0-sources.jar 22 bytes
mixto-1.0.0-javadoc.jar 22 bytes
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/mixto/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>mixto</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/mixto/
implementation 'org.webjars.npm:mixto:1.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/mixto/
implementation ("org.webjars.npm:mixto:1.0.0")
'org.webjars.npm:mixto:jar:1.0.0'
<dependency org="org.webjars.npm" name="mixto" rev="1.0.0">
  <artifact name="mixto" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='mixto', version='1.0.0')
)
libraryDependencies += "org.webjars.npm" % "mixto" % "1.0.0"
[org.webjars.npm/mixto "1.0.0"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

Mixto: A simple mixin superclass Build Status

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()
org.webjars.npm

Atom

Free and open source text editor, brought to you by GitHub

Версии библиотеки

Версия
1.0.0