const { foo, bar } = util.idProxy;
// is equivalent to
const foo = document.getElementById('foo');
const bar = document.getElementById('bar');const { 'hello-world': hello_world } = util.idProxy;
// is equivalent to
const hello_world = document.getElementById('hello-world');