UNPKG

redis-smq

Version:

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

7 lines 197 B
const VERSION = 10; const SEP = ':'; const PREFIX = `redis-smq${SEP}${VERSION}`; export function key(...segments) { return [PREFIX, ...segments].join(SEP); } //# sourceMappingURL=builder.js.map