Socket
Socket
Sign inDemoInstall

to-fast-properties

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    to-fast-properties

Force V8 to use fast properties for an object


Version published
Weekly downloads
33M
decreased by-8.97%
Maintainers
1
Install size
4.40 kB
Created
Weekly downloads
 

Package description

What is to-fast-properties?

The `to-fast-properties` npm package is designed to optimize objects for faster property access. This is particularly useful in scenarios where an object is frequently accessed and performance is critical. It forces V8 (the JavaScript engine behind Node.js and Google Chrome) to store the object in a 'fast properties' mode, which can significantly speed up property access on that object.

What are to-fast-properties's main functionalities?

Optimizing object property access

This feature allows you to optimize an object for faster property access by converting it to use fast properties. The code sample demonstrates how to apply `to-fast-properties` to an object to enhance its property access speed.

"use strict";\nconst toFastProperties = require('to-fast-properties');\n\nconst obj = { a: 1, b: 2 };\ntoFastProperties(obj);\n\n// Now `obj` is optimized for faster property access"

Other packages similar to to-fast-properties

Readme

Source

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 --save to-fast-properties

Usage

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, John-David Dalton, Sindre Sorhus

Keywords

FAQs

Last updated on 09 Jun 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc