DEBSOURCES
Skip Quicknav
sources / node-rollup / 2.38.4-1 / test / function / samples / deconstructed-exported-vars / main.js
1234567891011
let { a, b } = c(), [ d, e ] = f(); function c () { return { a: 1, b: 2 }; } function f () { return [ 4, 5 ]; } export { a, d };