0.0.1 • Published 6 years ago

schwarzschild v0.0.1

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

Schwarzschild

Library to create read-only object. Useful for global configurations and static settings;

Installation

npm install --save schwarzschild

Usage

const Blackhole = require('schwarzschild');

Create new write-once-read-only object

const config = new Blackhole;

config.env = 'production';
config.env = 'development';

console.log(config.env);
// 'production'

Convert existing object into schwarzschild

const config = new Blackhole(require('./config'));

const world = new Blackhole({
	timeStep: 1/60,
	fps: 60,
	gravity: [0, 0.3]
});