跳至主要內容

用于异步迭代的 Symbol.asyncIterator

小于 1 分钟featurees-proposalmissing-example

用于异步迭代的 Symbol.asyncIteratoropen in new window

类型

interface Object {
  iterateKeys(object: { [k: PropertyKey]: any }): Iterator<string>;
  iterateValues<T>(object: { [k: PropertyKey]: T }): Iterator<T>;
  iterateEntries<T>(object: { [k: PropertyKey]: T }): Iterator<[string, T]>;
}

入口点

core-js/proposals/async-iteration