to-fast-properties

WebJar for to-fast-properties

Лицензия

Лицензия

MIT
Группа

Группа

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

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

to-fast-properties
Последняя версия

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

2.0.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

to-fast-properties
WebJar for to-fast-properties
Ссылка на сайт

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

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

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

https://github.com/sindresorhus/to-fast-properties

Скачать to-fast-properties

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

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

Зависимости

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

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

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

to-fast-properties Build Status

Force V8 to use fast properties for an object

Read more.

Use %HasFastProperties(object) and --allow-natives-syntax to check whether an object already has fast properties.

Install

$ npm install to-fast-properties

Usage

const toFastProperties = require('to-fast-properties');

const object = {
	foo: true,
	bar: true
};

delete object.foo;
// `object` now has slow properties

toFastProperties(object);
// `object` now has fast properties

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

Версия
2.0.0
1.0.3
1.0.1