DEBSOURCES
Skip Quicknav
sources / node-rollup / 2.38.4-1 / test / function / samples / assignment-to-exports-b / main.js
123456789
var a = { prop: 42 }; var b = a.prop; function set ( new_a, new_b ) { a = new_a; b = new_b; } export { a, b, set };