Skip to content

v1.2.0

Choose a tag to compare

@mikaelbr mikaelbr released this 05 Dec 07:55
· 145 commits to master since this release

Additions:

  • Now you can remove single instances:
var immstruct = require('immstruct');
var structure = immstruct('key');

immstruct.remove(structure.key);
  • Immstruct now exposes the internal instance object:
var immstruct = require('immstruct');
var structure = immstruct('key');

immstruct.internals[structure.key] //=> Structure

With this you can iterate over the instances and do more fancy things - use it with care.