6 lines
81 B
JavaScript
6 lines
81 B
JavaScript
"use strict";
|
|
|
|
const { foo, ...bar } = {};
|
|
exports.foo = foo;
|
|
exports.bar = bar;
|