descriptor

WebJar for descriptor

Лицензия

Лицензия

MIT
Группа

Группа

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

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

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

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

0.1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

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

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

http://webjars.org

Скачать descriptor

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

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

Зависимости

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

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

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

Descriptor

Generate property descriptor maps

Getting Started

Install the module with: npm install descriptor

var Descriptor = require("descriptor");

Examples

var Descriptor = require("descriptor");

// `new` is optional
new Descriptor( "foo" );

{ // defaults to `true`
  writable: true,
  configurable: true,
  enumerable: true,
  value: 'foo'
}

new Descriptor( "foo", "!enumerable" );

{
  writable: true,
  configurable: true,
  enumerable: false,
  value: "foo"
}

var data = "";

new Descriptor({
  get: function() {
    return data;
  },
  set: function( value ) {
    data = value;
  }
});

{
  configurable: true,
  enumerable: true,
  set: [Function],
  get: [Function]
}

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.

Release History

(Nothing yet)

License

Copyright (c) 2012 Rick Waldron Licensed under the MIT license.

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

Версия
0.1.0