fetch()
For more complicated patterns, you may want to use the Fetch API directly, but this Nebula function simplifies the traditional fetch() pattern significantly for simple tasks. Read More »
memoize()
The Nebula memoize function is treated similarly to the WordPress Transient API. Read More »
throttle()
Very similar to debounce but where debounce happens only once at the end (or the beginning), throttle happens multiple times but limited to a set amount of time in between. Remember: there is no guarantee that an event will trigger at the end! If the action being throttled stops half-way into the cooldown, it will Read More »
temporaryClass()
During the active period, a class is added to the element. This can be used for additional styling or animation. Read More »