Hello. js-beautify format
const double = async (x) => x * 2;
to
const double = async(x) => x * 2;
It continues to work, but seems like bad behavior.
It formatted correctly
const double = async function(x) { return x * 2; };
const double = async x => x * 2;
Given that async/await just made it into node7 it would be great for this to get merged...
@paullryan - if you want to pick up where @afuous left off and work PR #977 to completion that would be greatly appreciated.
Any progress?
eslint-config-airbnb is not happy with the lack of space :(
Most helpful comment
Any progress?
eslint-config-airbnb is not happy with the lack of space :(