Files
botAffilate/serverADB/node_modules/zca-js/dist/cjs/apis/getCookie.cjs
T
2026-07-21 08:54:30 +07:00

15 lines
282 B
JavaScript

'use strict';
var utils = require('../utils.cjs');
const getCookieFactory = utils.apiFactory()((_, ctx) => {
/**
* Get the current cookie string
*/
return function getCookie() {
return ctx.cookie;
};
});
exports.getCookieFactory = getCookieFactory;