Attache `CONTINUE` symbol to `override` function
Closed this issue · 0 comments
divmain commented
Currently, plugin function definitions look like:
function (override, transform, control) {
// maybe do something with control.CONTINUE
};
Instead, remove control
and add pertinent symbols to the related functions. So:
function (override, transform) {
// maybe do something with override.CONTINUE
};