lukaskupczyk/react-hook-consent

View on GitHub
src/core/local-storage/remove.ts

Summary

Maintainability
A
1 hr
Test Coverage
A
100%
import { ConsentOptionsService } from '../../Context';

export function removeLocalStorage(localStorageItems?: ConsentOptionsService['localStorage']) {
    if (localStorageItems) {
        for (const localStorageItem of localStorageItems) {
            localStorage.removeItem(localStorageItem);
        }
    }
}