What does structuredClone do when the input object contains a function value on one of its properties?const obj = { fn: () => 1, n: 2 }; structuredClone(obj);