dtm means Do not touch me. It's a library for make some parts of your objects immutable.
npm install dtmjs
Don't touch me JS (dtmJS)
=========


A small library to manage the attributes of your objects.
npm install @jomsdev/dtmjs
var objectManager = require('@jomsdev/dtmjs');
var obj = {'a': 5, 'b': 7}
obj = objectManager.freeze(obj);
obj.a = 3 // boom!
npm test
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.