isa = (obj, opt) => {
const options = Object.assign({hspace: ((width - 8) >> 5) << 5, lanes: 1}, opt);
const ml = ['div', {style: 'background-color: white;'}, bitField.render(obj, options)];
const txt = onml.stringify(ml);
const el = DOM.element('div:div', {});
el.innerHTML = txt;
return el;
}