There are several reasons for a function not to have a function body:

Noncompliant Code Example

function foo() {
}

var foo = () => {};

Compliant Solution

function foo() {
    // This is intentional
}

var foo = () => {
    do_something();
};