Use client id without casts
Some checks are pending
Deploy / deploy (push) Blocked by required conditions
Deploy / build-and-publish (push) Successful in 2m47s

This commit is contained in:
Kopyl Anatoly
2024-12-11 19:39:05 +03:00
parent dc4abe5fc8
commit 9e95ed76e3

View File

@@ -25,7 +25,7 @@
ym(88895893, "getClientID", function (clientID) {
ym(88895893, 'userParams', {
university_test_group: Number(BigInt(clientID).toString().slice(-1)) % 2 === 0 ? 'a' : 'b'
university_test_group: Number(clientID.slice(-1)) % 2 === 0 ? 'a' : 'b'
});
});
</script>