UNPKG

rubico

Version:

[a]synchronous functional programming

13 lines (11 loc) 162 B
/** * @name noop * * @synopsis * noop() -> () * * @description * Takes nothing, returns `undefined` */ const noop = function () {} module.exports = noop