(data: ProfilesData, storage: ProfilesStorageLike = localStorage)
| 67 | } |
| 68 | |
| 69 | export function saveProfilesData(data: ProfilesData, storage: ProfilesStorageLike = localStorage): void { |
| 70 | storage.setItem(STORAGE_KEYS.profiles, serializeProfilesData(data)); |
| 71 | } |
no test coverage detected