logo

rv

The rv function stands for return void. It takes a function and returns nothing.

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

function add(a, b) {
  return a + b;
}

// will log undefined
console.log(rv(() => add(1, 2)));