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