* This function accepts and discards inputs; it has no side effects. This is * primarily useful idiomatically for overridable function endpoints which * always need to be callable, since JS lacks a null-call idiom ala Cocoa.
()
| 18551 | * always need to be callable, since JS lacks a null-call idiom ala Cocoa. |
| 18552 | */ |
| 18553 | function emptyFunction() {} |
| 18554 | |
| 18555 | emptyFunction.thatReturns = makeEmptyFunction; |
| 18556 | emptyFunction.thatReturnsFalse = makeEmptyFunction(false); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…