UNPKG

utils

Version:

Fast, generic JavaScript/node.js utility functions.

15 lines (12 loc) 222 B
'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; };