@swaggerexpert/cookie
Version:
RFC 6265 compliant cookie parser, validator and serializer.
10 lines (9 loc) • 312 B
JavaScript
;
exports.__esModule = true;
exports.default = void 0;
const base64Decoder = input => {
const binaryString = atob(input);
const bytes = new Uint8Array([...binaryString].map(char => char.charCodeAt(0)));
return new TextDecoder().decode(bytes);
};
var _default = exports.default = base64Decoder;