@swaggerexpert/cookie
Version:
RFC 6265 compliant cookie parser, validator and serializer.
10 lines • 397 B
JavaScript
import { identifiers, utilities } from 'apg-lite';
const cookieName = (state, chars, phraseIndex, phraseLength, data) => {
if (state === identifiers.SEM_PRE) {
data.push(['cookie-name', utilities.charsToString(chars, phraseIndex, phraseLength)]);
} else if (state === identifiers.SEM_POST) {
/* not used in this example */
}
return identifiers.SEM_OK;
};
export default cookieName;