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