Allow coreJS Symbol to be type object (#9756)
This commit is contained in:
parent
a559397feb
commit
ff04d3535c
@ -80,7 +80,7 @@ helpers.jsx = helper("7.0.0-beta.0")`
|
|||||||
helpers.asyncIterator = helper("7.0.0-beta.0")`
|
helpers.asyncIterator = helper("7.0.0-beta.0")`
|
||||||
export default function _asyncIterator(iterable) {
|
export default function _asyncIterator(iterable) {
|
||||||
var method
|
var method
|
||||||
if (typeof Symbol === "function") {
|
if (typeof Symbol !== "undefined") {
|
||||||
if (Symbol.asyncIterator) {
|
if (Symbol.asyncIterator) {
|
||||||
method = iterable[Symbol.asyncIterator]
|
method = iterable[Symbol.asyncIterator]
|
||||||
if (method != null) return method.call(iterable);
|
if (method != null) return method.call(iterable);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user