omnibelt/noop-async.js

  1. /**
  2. * This is async version of noop.
  3. *
  4. * @signature -> Promise<undefined>
  5. */
  6. const noopAsync = () => { return Promise.resolve(undefined); };
  7. module.exports = noopAsync;