You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

to-fast-properties

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

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
30M
decreased by-18.45%
Maintainers
1
Install size
4.78 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

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

import toFastProperties from 'to-fast-properties';

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

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

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

Keywords

FAQs

Package last updated on 08 Aug 2021

Did you know?

Socket

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
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc