7 lines
116 B
JavaScript

"use strict";
exports.bar = exports.foo = void 0;
const [foo, bar = 2] = [];
exports.bar = bar;
exports.foo = foo;