UNPKG
wechaty-puppet-wechat
Version:
latest (1.18.4)
next (1.13.2)
1.18.4
1.18.1
1.13.2
1.13.1
1.12.2
1.12.1
1.11.12
1.11.11
1.11.10
1.11.9
1.11.8
1.11.7
1.11.6
1.11.5
1.11.3
1.11.1
1.10.5
1.10.4
1.10.3
1.10.2
1.7.2
1.0.1
0.31.4
0.31.3
0.30.6
0.30.4
0.30.3
0.30.2
0.30.1
0.29.8
0.29.7
0.29.5
0.29.3
0.28.4
0.28.3
0.28.2
0.28.1
0.28.0
0.27.1
0.27.0
0.26.5
0.26.4
0.26.3
0.26.2
0.26.1
0.26.0
Puppet WeChat for Wechaty
github.com/wechaty/puppet-wechat
wechaty/puppet-wechat
wechaty-puppet-wechat
/
src
/
pure-function-helpers
/
is-type.ts
8 lines
(6 loc)
•
153 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export
function
isRoomId (
id
: string): boolean {
return
/^@@/.test(
id
) }
export
function
isContactId (
id
: string): boolean {
return
!isRoomId(
id
) }