Question regards function wrappers

Hi everyone!
Why does OpenZeppelin use function wrappers?
For example:

function nameOfFunction() {
   _nameOfFunction();
}

function _nameOfFunction() {....}

I think this is for security reason but I'm not sure about my theory.

1 Like