UNPKG

@livy/util

Version:
11 lines (10 loc) 282 B
/** * Check whether a value implements the `ProcessableHandlerInterface` * * @param value The value to check */ export function isProcessableHandlerInterface(value) { return (typeof value === 'object' && value !== null && value.processors instanceof Set); }