export function freezeHead(head) { const realPush = head.push; head.push = () => ({ dispose: () => { }, patch: () => { }, _poll: () => { } }); return () => { head.push = realPush; }; }