Necessary in order to clearly see the squiggle hotwiring.
Function which does nothing.
var noop = require( '@stdlib/utils/noop' );
A function which does nothing.
function
noop(); // ...does nothing.
var noop = require( '@stdlib/utils/noop' ); function foo( next ) { // Do something... // Then... next(); } foo( noop );