npm install @conedevelopment/qkie
# or
yarn add @conedevelopment/qkie
import Cookie from '@conedevelopment/qkie';
const handler = new Cookie();
handler.set('theme', 'dark');
// Passing extra options
handler.set('theme', 'dark', new Date('2024-10-10'), '/', {
SameSite: 'Lax',
Secure: true,
});
let theme = handler.get('theme');
// With default value
let theme = handler.get('theme', 'dark');
if (handler.isset('theme')) {
//
}
handler.remove('theme');