'use strict'; /** * A "no-operation" function. Returns `undefined` regardless * of the arguments it receives. * * @name .noop * @return {undefined} * @api public */ module.exports = function noop() { return; };