The rv function stands for return void. It takes a function and returns nothing.
rv
return void
import { rv } from '@aracna/core'; function add(a, b) { return a + b; } // will log undefined console.log(rv(() => add(1, 2)));