-
-
Notifications
You must be signed in to change notification settings - Fork 456
Closed
Description
It would be nice to enable a generic fn that can be used to hack add customize use cases
function filterFunc(key, value) {
if (key == 'b') {
// Return an `undefined` value to omit a property.
return;
}
if (key == 'e[f]') {
return value.getTime();
}
if (key == 'e[g][0]') {
return value * 2;
}
return value;
}
Metadata
Metadata
Assignees
Labels
No labels