UNPKG

redis-smq

Version:

A high-performance, reliable, and scalable message queue for Node.js.

5 lines 236 B
import { STATE_TRANSITION_RULES } from '../state-transition-rules.js'; export function _isAllowedTransition(from, to) { return STATE_TRANSITION_RULES[from]?.includes(to) ?? false; } //# sourceMappingURL=_is-allowed-transition.js.map