From 907c9af43152b59d17f335954a597b3db2b521fc Mon Sep 17 00:00:00 2001 From: Will Harney Date: Fri, 1 Mar 2024 13:24:24 -0500 Subject: [PATCH] restore `parse` export that was accidentally removed --- lib/cookie/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cookie/index.ts b/lib/cookie/index.ts index f15b6f62..7b94bdd4 100644 --- a/lib/cookie/index.ts +++ b/lib/cookie/index.ts @@ -19,4 +19,5 @@ export { permutePath } from './permutePath' import { Cookie } from './cookie' +export const parse = Cookie.parse export const fromJSON = Cookie.fromJSON