UNPKG
@atproto/lexicon-resolver
Version:
latest (0.2.3)
0.2.3
0.2.2
0.2.1
0.2.0
0.1.1
0.1.0
ATProto Lexicon resolution
atproto.com
bluesky-social/atproto
@atproto/lexicon-resolver
/
src
/
util.ts
11 lines
(9 loc)
•
175 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ ensureValidDid }
from
'@atproto/syntax'
export
function
isValidDid
(
did: string
) {
try
{
ensureValidDid
(did)
return
true
}
catch
{
return
false
} }