Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / src / internal / symbol / iterator.ts
1 export function getSymbolIterator(): symbol {
2   if (typeof Symbol !== 'function' || !Symbol.iterator) {
3     return '@@iterator' as any;
4   }
5
6   return Symbol.iterator;
7 }
8
9 export const iterator = getSymbolIterator();
10
11 /**
12  * @deprecated use {@link iterator} instead
13  */
14 export const $$iterator = iterator;