UNPKG

rubico

Version:

[a]synchronous functional programming

23 lines (21 loc) 364 B
/** * @name noop * * @synopsis * ```coffeescript [specscript] * noop() -> undefined * ``` * * @description * Doesn't do anything. * * ```javascript [playground] * import noop from 'https://cdn.jsdelivr.net/npm/rubico/dist/x/noop.es.js' * * console.log( * noop(), * ) // undefined * ``` */ const noop = function noop() {} module.exports = noop