You can create your own functions easily, just add a
master section and a script at the top. For example to have a JS increment function:
[[]]:
squiffy.inc = function(attr) {
squiffy.set(attr, (squiffy.get(attr) || 0) + 1);
};
As for finding out which function are available, I recommend debugging in Chrome, and then seeing what is available in the
squiffy object.