Files
joel 0238518822
Build & Deploy NutriApp / build-and-deploy (push) Failing after 7m12s
Frontend WASM compilado + fixes PartialEq + uuid js feature
2026-06-27 02:40:53 +01:00

9 lines
259 B
JavaScript

export function getMetaContents(meta_name) {
const selector = document.querySelector(`meta[name="${meta_name}"]`);
if (!selector) {
return null;
}
return selector.content;
}