The problem with this approach is you need to consider every existing function name in order to define a new one.
The beauty of commonjs modules is they allow you to focus on implementation, rather than identification. All functions can be anonymous, identified only by their path and named at the whims of the caller.
Comments
The problem with this approach is you need to consider every existing function name in order to define a new one.
The beauty of commonjs modules is they allow you to focus on implementation, rather than identification. All functions can be anonymous, identified only by their path and named at the whims of the caller.