import { is_development, is_testing } from "$lib/configuration"; export default function pwKey(node, value) { if (!value) return; if (!is_testing()) { if (is_development()) console.warn("VITE_TESTING is false, so not setting pw-key attributes"); return; } node.setAttribute("pw-key", value); } //# sourceMappingURL=pwKey.js.map