UNPKG

redis-smq

Version:

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

10 lines 286 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.key = key; const VERSION = 10; const SEP = ':'; const PREFIX = `redis-smq${SEP}${VERSION}`; function key(...segments) { return [PREFIX, ...segments].join(SEP); } //# sourceMappingURL=builder.js.map