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 
Force V8 to use fast properties for an object
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