考虑以下代码:constperson=Immutable.Map({name:'John',surname:'Maverick',age:39});constmutated=person.deleteAll(['name','age']);预期结果是mutated现在是Map的新实例,其中键name和age已删除。但是,抛出异常:UncaughtTypeError:person.deleteAllisnotafunction检查Immutable.Map原型(prototype)的可用方法时,没有deleteAll和removeAll方法。它们被移除了吗?该方法在ImmutableJS