Sha256: 196ff5971f8ab9d544bee72ebbf6bd1d5f620ec2e3a2d50672c372af75d854da

Contents?: true

Size: 733 Bytes

Versions: 45

Compression:

Stored size: 733 Bytes

Contents

# to-fast-properties [![Build Status](https://travis-ci.org/sindresorhus/to-fast-properties.svg?branch=master)](https://travis-ci.org/sindresorhus/to-fast-properties)

> Force V8 to use fast properties for an object

[Read more.](http://stackoverflow.com/questions/24987896/)

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


## Install

```
$ npm install --save to-fast-properties
```


## Usage

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

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

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

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


## License

MIT © Petka Antonov, Sindre Sorhus

Version data entries

45 entries across 45 versions & 11 rubygems

Version Path
babel-schmooze-sprockets-0.1.2 node_modules/to-fast-properties/readme.md
babel-schmooze-sprockets-0.1.1 node_modules/to-fast-properties/readme.md
babel-schmooze-sprockets-0.1.0 node_modules/to-fast-properties/readme.md
babel-schmooze-sprockets-0.1.0.alpha.3 node_modules/to-fast-properties/readme.md
babel-schmooze-sprockets-0.1.0.alpha.2 node_modules/to-fast-properties/readme.md