1 | export const USER_AGENT = "user-agent";
|
2 | export const X_AMZ_USER_AGENT = "x-amz-user-agent";
|
3 | export const SPACE = " ";
|
4 | export const UA_NAME_SEPARATOR = "/";
|
5 | export const UA_NAME_ESCAPE_REGEX = /[^\!\$\%\&\'\*\+\-\.\^\_\`\|\~\d\w]/g;
|
6 | export const UA_VALUE_ESCAPE_REGEX = /[^\!\$\%\&\'\*\+\-\.\^\_\`\|\~\d\w\#]/g;
|
7 | export const UA_ESCAPE_CHAR = "-";
|