@berish/rfp
Version:
Binary secure transport organization protocol for peer communication using function fingerprints
13 lines • 563 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCommandName = exports.PeerStoreCommandEnum = void 0;
var PeerStoreCommandEnum;
(function (PeerStoreCommandEnum) {
PeerStoreCommandEnum["setValue"] = "setValue";
PeerStoreCommandEnum["setState"] = "setState";
})(PeerStoreCommandEnum = exports.PeerStoreCommandEnum || (exports.PeerStoreCommandEnum = {}));
function getCommandName(cmd, storeName) {
return `[${storeName}]:${cmd}`;
}
exports.getCommandName = getCommandName;
//# sourceMappingURL=getCommandName.js.map