cookie-muncher
Advanced tools
Comparing version
@@ -1,1 +0,1 @@ | ||
"use strict";var f=Object.defineProperty;var b=Object.getOwnPropertyDescriptor;var v=Object.getOwnPropertyNames;var w=Object.prototype.hasOwnProperty;var x=(e,o)=>{for(var r in o)f(e,r,{get:o[r],enumerable:!0})},z=(e,o,r,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let m of v(o))!w.call(e,m)&&m!==r&&f(e,m,{get:()=>o[m],enumerable:!(s=b(o,m))||s.enumerable});return e};var O=e=>z(f({},"__esModule",{value:!0}),e);var E={};x(E,{CookieMaxAge:()=>l,domCookie:()=>S,httpCookie:()=>g});module.exports=O(E);function p(e){return e?e.split(";").map(o=>{let[r,s]=o.split("="),m=r.trim(),y=decodeURIComponent(s.trim());return{name:m,value:y}}):[]}function C(e){return`${e.charAt(0).toUpperCase()}${e.slice(1)}`}function h(e){return new TextEncoder().encode(e).byteLength}function i(e,o={}){let r=[`${e.name}=${encodeURIComponent(e.value)}`];return o.maxAge&&r.push(`Max-Age=${o.maxAge}`),o.expires&&r.push(`Expires=${o.expires.toUTCString()}`),o.domain&&r.push(`Domain=${encodeURIComponent(o.domain)}`),r.push(`Path=${encodeURIComponent(o.path||"/")}`),o.secure&&r.push("Secure"),o.httpOnly&&r.push("HttpOnly"),o.sameSite&&r.push(`SameSite=${C(o.sameSite)}`),r.join("; ")}var g={parse:p,serialize:i};function n(){if(!navigator.cookieEnabled)throw Error("Cookies are disabled by the browser")}function c(){return n(),p(document.cookie)}function u(e){return n(),p(document.cookie).find(o=>o.name===e)||null}function k(e,o={}){if(n(),document.cookie.split(";").length>50)throw Error("You have more than 50 cookies, most browsers limit the number of cookies to 50");let s=i(e,o);if(h(s)>4096)throw Error(`The size of this cookie is greater than ${4096} bytes, most browsers limit the number of cookies to this size.`);document.cookie=i(e,o)}var l=(t=>(t[t.Now=-1]="Now",t[t.OneHour=3600]="OneHour",t[t.SixHours=21600]="SixHours",t[t.TwlveHours=43200]="TwlveHours",t[t.OneDay=86400]="OneDay",t[t.OneWeek=604800]="OneWeek",t[t.TwoWeeks=1209600]="TwoWeeks",t[t.OneMonth=2592e3]="OneMonth",t[t.ThreeMonths=7776e3]="ThreeMonths",t[t.SixMonths=15552e3]="SixMonths",t[t.OneYear=31536e3]="OneYear",t))(l||{});function a(e,o){n(),document.cookie=i({name:e,value:""},{...o,maxAge:-1})}var S={getAll:c,get:u,set:k,remove:a};0&&(module.exports={CookieMaxAge,domCookie,httpCookie}); | ||
"use strict";var c=Object.defineProperty;var y=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var b=Object.prototype.hasOwnProperty;var w=(e,o)=>{for(var r in o)c(e,r,{get:o[r],enumerable:!0})},v=(e,o,r,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let m of x(o))!b.call(e,m)&&m!==r&&c(e,m,{get:()=>o[m],enumerable:!(s=y(o,m))||s.enumerable});return e};var z=e=>v(c({},"__esModule",{value:!0}),e);var $={};w($,{CookieMaxAge:()=>a,domCookie:()=>E,httpCookie:()=>O});module.exports=z($);function p(e){return e?e.split(";").map(o=>{let[r,s]=o.split("="),m=r.trim(),d=decodeURIComponent(s.trim());return{name:m,value:d}}):[]}function C(e){return`${e.charAt(0).toUpperCase()}${e.slice(1)}`}function h(e){return new TextEncoder().encode(e).byteLength}function i(e,o={}){let r=[`${e.name}=${encodeURIComponent(e.value)}`];return o.maxAge&&r.push(`Max-Age=${o.maxAge}`),o.expires&&r.push(`Expires=${o.expires.toUTCString()}`),o.domain&&r.push(`Domain=${encodeURIComponent(o.domain)}`),r.push(`Path=${encodeURIComponent(o.path||"/")}`),o.secure&&r.push("Secure"),o.httpOnly&&r.push("HttpOnly"),o.sameSite&&r.push(`SameSite=${C(o.sameSite)}`),r.join("; ")}var O={parse:p,serialize:i};function n(){if(!navigator.cookieEnabled)throw Error("Cookies are disabled by the browser")}function f(){return n(),p(document.cookie)}function u(e){return n(),p(document.cookie).find(o=>o.name===e)||null}function k(e,o={}){if(n(),document.cookie.split(";").length>=50)throw new Error("You have more than 50 cookies, most browsers limit the number of cookies to 50");let s=i(e,o);if(h(s)>4096)throw new Error("The size of this cookie is greater than 4096 bytes, most browsers limit the number of cookies to this size");document.cookie=i(e,o)}var a=(t=>(t[t.Now=-1]="Now",t[t.OneHour=3600]="OneHour",t[t.SixHours=21600]="SixHours",t[t.TwlveHours=43200]="TwlveHours",t[t.OneDay=86400]="OneDay",t[t.OneWeek=604800]="OneWeek",t[t.TwoWeeks=1209600]="TwoWeeks",t[t.OneMonth=2592e3]="OneMonth",t[t.ThreeMonths=7776e3]="ThreeMonths",t[t.SixMonths=15552e3]="SixMonths",t[t.OneYear=31536e3]="OneYear",t))(a||{});function l(e,o){n(),document.cookie=i({name:e,value:""},{...o,maxAge:-1})}var E={getAll:f,get:u,set:k,remove:l};0&&(module.exports={CookieMaxAge,domCookie,httpCookie}); |
{ | ||
"name": "cookie-muncher", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "Effortless cookie management", | ||
@@ -27,5 +27,6 @@ "author": "Bluzzi", | ||
"@bluzzi/eslint-config": "^1.1.0", | ||
"@types/node": "^18.15.13", | ||
"@types/node": "^18.16.1", | ||
"@vitest/ui": "^0.30.1", | ||
"eslint": "^8.39.0", | ||
"jsdom": "^21.1.1", | ||
"tsup": "^6.7.0", | ||
@@ -40,3 +41,11 @@ "typescript": "^5.0.4", | ||
"clean": true | ||
} | ||
}, | ||
"keywords": [ | ||
"cookie", "cookies", | ||
"browser", "client", "http", "https", | ||
"parser", "serializer", | ||
"amd", "cjs", "commonjs", "esm", | ||
"typescript", "typesafe", | ||
"rfc6265" | ||
] | ||
} |
@@ -139,3 +139,3 @@ # Cookie Muncher | ||
> **Info** | ||
> **Note** | ||
> This parameter is disabled on the `DomCookieOptions` type. | ||
@@ -142,0 +142,0 @@ |
import type { Cookie, DomCookieOptions } from "#/typing/cookie"; | ||
import { serializeCookie } from "#/http/serializer"; | ||
import { getByteSize } from "#/utils/string"; | ||
import { cookieMaxByteSize, isCookieEnabled } from "#/utils/cookie"; | ||
import { cookieMaxByteSize, cookieMaxCount, isCookieEnabled } from "#/utils/cookie"; | ||
@@ -11,4 +11,4 @@ export function setCookie(cookie: Cookie, options: DomCookieOptions = {}): void { | ||
if (cookiesCount > 50) { | ||
throw Error("You have more than 50 cookies, most browsers limit the number of cookies to 50"); | ||
if (cookiesCount >= cookieMaxCount) { | ||
throw new Error("You have more than 50 cookies, most browsers limit the number of cookies to 50"); | ||
} | ||
@@ -19,3 +19,3 @@ | ||
if (getByteSize(newCookie) > cookieMaxByteSize) { | ||
throw Error(`The size of this cookie is greater than ${cookieMaxByteSize} bytes, most browsers limit the number of cookies to this size.`); | ||
throw new Error("The size of this cookie is greater than 4096 bytes, most browsers limit the number of cookies to this size"); | ||
} | ||
@@ -22,0 +22,0 @@ |
export const cookieMaxByteSize = 4096; | ||
export const cookieMaxCount = 50; | ||
@@ -3,0 +4,0 @@ export function isCookieEnabled(): void { |
import { defineConfig } from "vitest/config"; | ||
export default defineConfig({ | ||
test: { | ||
environment: "jsdom", | ||
environmentOptions: { | ||
jsdom: { | ||
url: "https://example.com" | ||
} | ||
} | ||
}, | ||
resolve: { | ||
@@ -5,0 +13,0 @@ alias: { |
Sorry, the diff of this file is not supported yet
32218
14.31%38
8.57%440
25.71%8
14.29%