Appearance
inline-arrow
Inline return statement of arrow function.
/// inline-arrow
/// ia
/// inline-arrow const foo = async (msg: string): void => { return fn(msg) }
Will be converted to:
const foo = async (msg: string): void => fn(msg)