yui Module
This module is a rollup of the following modules:
- 
                    
                        yui-base
                    
                    The YUI module contains the components required for building the YUI seed file. This includes the script loading mechanism, a simple queue, and the core utilities for the library.
- 
                    
                        yui-later
                    
                    Provides a setTimeout/setInterval wrapper. This module is acoreYUI module, it's documentation is located under the YUI class.
- 
                    
                        yui-log
                    
                    Provides console log capability and exposes a custom event for console implementations. This module is acoreYUI module, it's documentation is located under the YUI class.
- 
                    
                        yui-throttle
                    
                    Throttles a call to a method based on the time between calls. This method is attached to theYobject and is documented there. var fn = Y.throttle(function() { counter++; }); for (i; i< 35000; i++) { out++; fn(); }
