Programming protip: positional arguments can be hard to understand at the call site. So instead of:
serialise(data, true);
prefer
serialise({ arg1: data, arg2: true });
Programming protip: positional arguments can be hard to understand at the call site. So instead of:
serialise(data, true);
prefer
serialise({ arg1: data, arg2: true });