ImmutableJS - supprimer un élément à partir de la Carte

J'ai une carte avec cette structure:

{
1: {},
2: {}
}

Et je voudrais supprimer 2: {} (bien sûr - retour nouvelle collection sans cela). Comment puis-je le faire?
J'ai essayé ceci, mais quelque chose est faux:

 theFormerMap.deleteIn([],2) //[] should mean that it's right in the root of the map, and 2 is the name of the object I want to get rid of

OriginalL'auteur user3696212 | 2015-06-30