Created
May 21, 2019 08:00
-
-
Save aa6my/1ca87a8503c9cb336194587f31b036b4 to your computer and use it in GitHub Desktop.
cid.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var cid; | |
ga(function(tracker) { | |
cid = tracker.get('clientId')); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var cid = Math.floor(Math.random() * 0x7FFFFFFF) + "." + | |
Math.floor(Date.now() / 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment