You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'use strict';varcall=require('../internals/function-call');module.exports=function(record,fn,ITERATOR_INSTEAD_OF_RECORD){variterator=ITERATOR_INSTEAD_OF_RECORD ? record : record.iterator;varnext=record.next;varstep,result;while(!(step=call(next,iterator)).done){// 8:24 error Avoid calling back inside of a promise promise/no-callback-in-promiseresult=fn(step.value);if(result!==undefined)returnresult;}};
The text was updated successfully, but these errors were encountered:
Looks like I'm experiencing the same issue. I noticed that many parts of my code fail linting when they include arguments named next, even though they're unrelated to promise usage.
In many different cases. Example:
The text was updated successfully, but these errors were encountered: