Leon4gr45's picture
Upload folder using huggingface_hub (part 6)
6778ee0 verified
Raw
History Blame Contribute Delete
384 Bytes
const GTM_SIGNATURES = ['googletagmanager.com/gtm.js']
function scanGTM(html) {
if (typeof html === 'string') {
return GTM_SIGNATURES.some((signature) => {
return html.includes(signature)
})
}
return false
}
export function checkGTM(document) {
if (typeof document === 'object') {
return scanGTM(document.documentElement?.outerHTML)
}
return false
}