is-property

WebJar for is-property

Лицензия

Лицензия

MIT
Группа

Группа

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

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

is-property
Последняя версия

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

1.0.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

is-property
WebJar for is-property
Ссылка на сайт

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

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

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

https://github.com/mikolalysenko/is-property

Скачать is-property

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

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

Зависимости

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

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

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

is-property

Tests if a property of a JavaScript object can be accessed using the dot (.) notation or if it must be enclosed in brackets, (ie use x[" ... "])

Example

var isProperty = require("is-property")

console.log(isProperty("foo"))  //Prints true
console.log(isProperty("0"))    //Prints false

Install

npm install is-property

require("is-property")(str)

Checks if str is a property

  • str is a string which we will test if it is a property or not

Returns true or false depending if str is a property

Credits

(c) 2013 Mikola Lysenko. MIT License

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

Версия
1.0.2
1.0.0