UNPKG

fbz

Version:

Fork of the OpenBazaar 2.0 browser-based client.

10 lines (8 loc) 231 B
export function getName(profile) { if (typeof profile !== 'object') { throw new Error('Please provide a profile object.'); } return ( (profile.handle && `@${profile.handle}`) || profile.name || profile.peerID ); }