Helper to wrap functions inside a function call.
This helper wraps a function within a call expression. It works with any function: statements, expressions and methods; both named and anonymous.
In
``js`
(function () {
}());
Out
`js`
_wrapper(function () {
})();
`js
import wrapFunction from "babel-helper-wrap-function";
wrapFunction(nodePathOfTheFunction, nodeWhichReferencesToTheWrapper);
``