Cliff Rodgers

Results 1 issues of Cliff Rodgers

Running the async codemod on the following code ``` const foo = function() { mySyncFunctionDoesNotReturnAPromiseOrEvenExist(); }; ``` produces ``` const foo = function() { await mySyncFunctionDoesNotReturnAPromiseOrEvenExist(); }; ``` This is...

bug
help wanted