Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 275 Bytes

no-arrow-func.md

File metadata and controls

25 lines (17 loc) · 275 Bytes

xxx

✅ This rule is part of the recommended config.

🔧 This rule is auto-fixable.

Fail

var test = () => {};
runCallback(() => {});

Pass

function test() {}
runCallback(function () {});