/**
* Check whether a value implements the `ProcessableHandlerInterface`
*
* @param value The value to check
*/exportfunctionisProcessableHandlerInterface(value) {
return (typeof value === 'object' &&
value !== null &&
value.processorsinstanceofSet);
}