DEBSOURCES
Skip Quicknav
sources / node-rollup / 3.29.5-1 / test / function / samples / handle-object-rest-spread-properties / main.js
1234567891011
const a = { result: true }; const b = { ...a }; if (!b.result) { throw new Error('Spread properties were not recognized'); }