Immutable.Map.deleteAll() is not a function
Consider the following code: const person = Immutable.Map({ name: 'John', surname: 'Maverick', age: 39 }); const mutated = person.deleteAll(['name', 'age']); Expected result would be that mutated now is a new instance of Map with the keys name and age deleted. However, throws an exception: Uncaught TypeError: person.deleteAll is not a function When inspecting the available methods of Immutable.Map prototype, there is no deleteAll nor removeAll methods. Have they been removed? The method is listed in the official ImmutableJS documentation, but it is not available. What would be a native