UNPKG

@livy/util

Version:
11 lines (10 loc) 276 B
/** * Check whether a value implements the ClosableHandlerInterface * * @param value The value to check */ export function isClosableHandlerInterface(value) { return (typeof value === 'object' && value !== null && typeof value.close === 'function'); }