| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
| typeof sources[SymbolIterator] !== 'function' || | ||
| typeof sources === 'string') { | ||
| throw new ERR_INVALID_ARG_TYPE('sources', 'Iterable', sources); | ||
| throw new ERR_INVALID_ARG_TYPE('sources', 'a sequence', sources); |
There was a problem hiding this comment.
definitely better. might be worth indicating a sequence of what tho
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
resolve: nodejs#38856 PR-URL: nodejs#42338 Fixes: nodejs#38856 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
resolve: nodejs#38856 PR-URL: nodejs#42338 Fixes: nodejs#38856 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
resolve: nodejs/node#38856 PR-URL: nodejs/node#42338 Fixes: nodejs/node#38856 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
| Back | FazBrowse Home | New Git URL |
resolve: #38856
before:
TypeError [ERR_INVALID_ARG_TYPE]: The "sources" argument must be an instance of Iterable. Received type string ('nodejs')after:
TypeError [ERR_INVALID_ARG_TYPE]: The "sources" argument must be a sequence. Received type string ('nodejs')ref #38856 (comment):