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
/* | |
Storage Polyfill by Remy Sharp. | |
Delinted by Samuel Cole. | |
*/ | |
if (typeof window.localStorage === 'undefined' || typeof window.sessionStorage === 'undefined') { | |
(function () { | |
var Storage = function (type) { | |
function createCookie(name, value, days) { |