export function strip_(obj: T): T { Object.keys(obj).filter(e => e.startsWith('_')).forEach(k => delete (obj as any)[k]); return obj; }