3 lines
119 B
JavaScript

export default function _isTransformer(obj) {
return obj != null && typeof obj['@@transducer/step'] === 'function';
}