0.1.1 • Published 8 years ago

dtmjs v0.1.1

Weekly downloads
2
License
MIT LICENSE
Repository
github
Last release
8 years ago

Don't touch me JS (dtmJS)

Build Status Coverage Status

A small library to manage the attributes of your objects.

Installation

npm install @jomsdev/dtmjs

Usage

var objectManager = require('@jomsdev/dtmjs');

var obj = {'a': 5, 'b': 7} 

obj = objectManager.freeze(obj);

obj.a = 3 // boom!

Tests

npm test

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.