materialize

WebJar for materialize

Лицензия

Лицензия

MIT
Группа

Группа

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

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

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

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

1.0.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

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

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

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

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

https://github.com/fgnass/materialize

Скачать materialize

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

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

Зависимости

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

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

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

Build Status

Tiny utility to turn a list into an object

Example:

var materialize = require('materialize');

var props = [
  { name: 'foo', value: 23 },
  { name: 'bar', value: 42 }
];

console.log(materialize(props));

Output:

{ foo: 32, bar: 42 }

By default materialize() looks for a name and a value property. You may specify different names like this:

var props = [
  { property: 'foo', val: 23 },
  { property: 'bar', val: 42 }
];

var obj = materialize(props, 'property', 'val');

License

MIT

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

Версия
1.0.0