In general, if it's not documented, it's an internal function not meant for use outside of the plugin itself. Every plugin typically has several functions that are meant for internal use only.
If you use undocumented functions, you should not expect them to still work in future versions.
jQuery widgets generally start "private" function names with an underscore to tip you off that you should not use it. But it doesn't seem this author followed that convention.
If you still want to use it, or you are just curious, you can study the source code to see what it does and how it is used internally.