6 lines
81 B
JavaScript
6 lines
81 B
JavaScript
"use strict";
|
|
|
|
const [foo, bar = 2] = [1];
|
|
exports.foo = foo;
|
|
exports.bar = bar;
|