Last active
July 28, 2017 11:30
-
-
Save gskachkov/d5c81b03a81ad6401afe41bce461e40f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var foo = async function*() {}; | |
typeof foo; | |
// "function" | |
foo.toString(); | |
// "async function* () {}" | |
foo[Symbol.toStringTag]; | |
// "AsyncFunction" | |
Object.prototype.toString.call(foo); | |
// [object AsyncFunction] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment