trimAll()
Remember that this is a method and not a function– see the example for how to use it. Read More »
attributionTracking()
Important: This function requires the "Attribution Tracking" Nebula Option to be enabled in order to use it! Be sure that the use of this cookie fits within your privacy policy and other regulations. To send this data to third-party CRMs, make a hidden text input field with the class "attribution" in your CRM form. It Read More »
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. This Nebula fetch function will also automatically monitor performance using marks and measures. So when running tests in the Performance tab of DevTools or using WebPageTest (for example), you'll Read More »
memoize()
Remember that even the functionality that memoize is caching does not have to be that "expensive" to see benefits from it. If you are using a lot of jQuery selectors or frequently reading/checking the DOM you may be "DOM Thrashing" and not realizing it. Memoization can dramatically help this by storing the state of the Read More »