UNPKG

rubico

Version:

[a]synchronous functional programming

22 lines (21 loc) 344 B
export = noop; /** * @name noop * * @synopsis * ```coffeescript [specscript] * noop() -> undefined * ``` * * @description * Doesn't do anything. * * ```javascript [playground] * import noop from 'https://unpkg.com/rubico/dist/x/noop.es.js' * * console.log( * noop(), * ) // undefined * ``` */ declare function noop(): void;