init: function()

in platform/core/common/services/fds-storage.service.js [85:97]


    init: function () {
        for (let i = 0; i < localStorage.length; i++) {
            try {
                // get the next item
                const key = localStorage.key(i);

                // attempt to get the item which will expire if necessary
                this.getItem(key);
            } catch (e) {
                // Do nothing
            }
        }
    },