aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/actions/pwKey.ts
blob: e8f615cbc8f103a12f6ffed17618d18094629fa2 (plain) (blame)
1
2
3
4
export default function pwKey(node: HTMLElement, value: string | undefined) {
    if (!value) return;
    node.setAttribute("pw-key", value);
}