Is there a lodash
function that does the following:
function myFunc(prev: number) { let next = prev + 1 if (next > THRESHOLD) { next = INITIAL_VALUE } return next}
Is there a lodash
function that does the following:
function myFunc(prev: number) { let next = prev + 1 if (next > THRESHOLD) { next = INITIAL_VALUE } return next}