UNPKG
aijinkela-wechaty
Version:
latest (1.20.2)
next (1.20.2)
1.20.2
Wechaty is a RPA SDK for Chatbot Makers.
github.com/wechaty/
wechaty/wechaty
aijinkela-wechaty
/
src
/
helper-functions
/
stringify-filter.ts
14 lines
(10 loc)
•
217 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// https://stackoverflow.com/a/38251445/1123955
function
stringifyFilter
(
_key
:
string
,
value
:
any
) {
if
(value
instanceof
RegExp
) {
return
value.
toString
() }
return
value }
export
{ stringifyFilter, }