Override cached result of diOnce call
Should be cached within diInit callback
const fun = diOnce(n => n + 1)fun(1) // 2diOnceSet(fun, 9)fun(8) // 9 Copy
const fun = diOnce(n => n + 1)fun(1) // 2diOnceSet(fun, 9)fun(8) // 9
Override cached result of diOnce call
Should be cached within diInit callback
Example