@splitsoftware/splitio-commons
Version:
Split JavaScript SDK common components
8 lines (7 loc) • 363 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.buildInstanceId = void 0;
function buildInstanceId(key, trafficType) {
return "".concat(key.matchingKey ? key.matchingKey : key, "-").concat(key.bucketingKey ? key.bucketingKey : key, "-").concat(trafficType ? trafficType : '');
}
exports.buildInstanceId = buildInstanceId;