10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
import { apiFactory } from "../utils.js";
|
|
export const getCookieFactory = apiFactory()((_, ctx) => {
|
|
/**
|
|
* Get the current cookie string
|
|
*/
|
|
return function getCookie() {
|
|
return ctx.cookie;
|
|
};
|
|
});
|