Files: ca90b5ca0579ebdcc0635288bce4978e3fb200f5 / test / test-50-object-spread / test-x-index.js
151 bytesRaw
1 | ; |
2 | |
3 | var s = { o: 'o', k: 'k' }; |
4 | var { o, ...other } = s; |
5 | var fn = ({ x, ...y }) => x(y.value); |
6 | |
7 | fn({ x: console.log, value: o + other.k }); |
8 |
Built with git-ssb-web