Sign in
apache
/
incubator-resilientdb-ResContract
/
a38804e78a872ef90e5cbab1c702c7554a393c9b
/
.
/
node_modules
/
rxjs
/
src
/
internal
/
symbol
/
iterator.ts
blob: 75098ef48973e2bae9082d0a8a6e4f9b9ffdeb0d [
file
] [
log
] [
blame
]
export
function
getSymbolIterator
():
symbol
{
if
(
typeof
Symbol
!==
'function'
||
!
Symbol
.
iterator
)
{
return
'@@iterator'
as
any
;
}
return
Symbol
.
iterator
;
}
export
const
iterator
=
getSymbolIterator
();