Skip to content

Instantly share code, notes, and snippets.

@agilmore
agilmore / utm_support.js
Last active August 29, 2015 14:13
Simple JS library which creates Google Analytics compatible __utm[z|a|b] cookies
(function(W, D, L) {
if (!Date.now) {
Date.now = function now() {
return new Date().getTime();
};
}
if (!String.prototype.startsWith) {
Object.defineProperty(String.prototype, 'startsWith', {
enumerable: false,