Files
botAffilate/serverNode/node_modules/zca-js/dist/apis/getCookie.js
T

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;
};
});