1.0.0 • Published 6 years ago

fast-freeze v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

fast-freeze

Ugly but fast read only object

This module actually don't freeze object but convert the object into nested functions. Hence accessing any propery seems ugly.

How to use

Install like any npm package

npm i fast-freeze

then just use it

var fastFreeze = require("fast-freeze");

var testConfig = var C = {
    name: 'John',
    surname: 'Johnson',
    age: 26,
    address: {
        street: '1st Street',
        city: 'Los Angeles',
        country: 'USA'
    },
    vehicles: [
        'BMW',
        'Ferrari',
        'Lamborghini'
    ]
};

var frozenConfig = fastFreeze(C);

console.log( frozenConfig("vehicles")[1] );
console.log( testConfig["vehicles"][1] );

Benchmark

Object.freeze : 62130394.37862057 requests/second fast-freeze : 514441747.5754436 requests/second normal : 498987957.90934324 requests/second

benchmark fast freeze javascript

1.0.0

6 years ago