UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

10 lines (7 loc) • 215 B
export function getSymbolIterator(): symbol { if (typeof Symbol !== 'function' || !Symbol.iterator) { return '@@iterator' as any; } return Symbol.iterator; } export const iterator = getSymbolIterator();