NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
Run these functions in your browser console.
Includes a CSS or JS file onto the page.
Returns a promise that resolves when the CSS/JS file has finished loading.
u.include('//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js').then(function() {
// do something with $ or jQuery
});
Removes rows that don't fall within date range (end date is optional).
u.filter('04/04/2015');
Returns an array of transaction amounts.
Returns the lowest transaction amount.
Returns the highest transaction amount.
Returns the sum of transaction amounts.
Returns the average transaction amount.
Returns an object of transaction calculations (min, max, sum, average)
Rating: 0