JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 22792019
  • Score
    100M100P100Q232734F
  • License MIT

Force V8 to use fast properties for an object

Package Exports

  • to-fast-properties

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (to-fast-properties) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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

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

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

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

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

License

MIT © Sindre Sorhus