@adventera/vectara-ui
Version:
Vectara's design system, codified as a React component library
16 lines (15 loc) • 488 B
JavaScript
export const getTrackingProps = (track) => {
if (track) {
return {
// Protect against tabnabbing.
rel: "noopener",
// Provide information for tracking, e.g. to docs.
referrerpolicy: "no-referrer-when-downgrade"
};
}
// Protect against tabnabbing and strip information from the referrer header.
return {
rel: "noopener"
// Default referrer policy is set by a meta tag in index.html.
};
};