logo

noop

The noop function stands for no operation. It takes any number of arguments and returns nothing.

import { noop } from '@aracna/core';

function fn(callback) {
  callback();
}

// will do nothing
fn(noop);