Replace _.noop with arrow Function
Replace _.noop
with () => undefined
.

Why is this refactoring helpful?
With the introduction of arrow functions in ES2015, you can express _.noop
with similarly short standard JavaScript. This refactoring reduces the dependency on Lodash.