all files / dist/ json-component-environment.js

75% Statements 3/4
100% Branches 0/0
0% Functions 0/1
75% Lines 3/4
1 2 3 4 5 6 7 8 9 10 11 12                 
'use strict';
 
var JSONIDOperations = require('./json-id-operations');
var JSONMount = require('./json-mount');
 
module.exports = {
  processChildrenUpdates: JSONIDOperations.dangerouslyProcessChildrenUpdates,
  replaceNodeWithMarkupByID: JSONIDOperations.dangerouslyReplaceNodeWithMarkupByID,
  unmountIDFromEnvironment: function unmountIDFromEnvironment(id) {
    JSONMount.purgeId(id);
  }
};