UNPKG
fbz
Version:
latest (0.4.0)
0.4.0
0.3.0
0.2.0
0.1.0
Fork of the OpenBazaar 2.0 browser-based client.
localhost
Mentors4EDU/FBZ
fbz
/
src
/
util
/
profile.js
10 lines
(8 loc)
•
231 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
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
); }