function inspectorPrompt(value, options = {}) {
const {
name,
prompt,
empty = value => value == null,
throbberSteps = ['', '.', '..', '...', ' ..', ' .'],
throbberDelay = 350,
invalidated = invalidation
} = options;
const view = html`<div>`;
const inspector = new Inspector(view);
if(!empty(value)) {
inspector.fulfilled(value, name);
view.value = value;
return view;
}
const placeholder = htl.html`<div style="font: var(--monospace-font); padding: 4px 0">
${prompt}
${throbber(throbberSteps, throbberDelay, invalidated)}
`;
view.appendChild(placeholder);
inspector.pending();
return view;
}