Ejemplo n.º 1
0
 _forEach(graph.entities, function(entity, id) {
     if (entity) {
         var copy = _cloneDeepWith(entity, customizer);
         baseEntities[copy.id] = copy;
     } else {
         delete baseEntities[id];
     }
 });
Ejemplo n.º 2
0
 _forEach(graph.base().entities, function(entity) {
     var copy = _cloneDeepWith(entity, customizer);
     baseEntities[copy.id] = copy;
 });