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
/
dist
/
esm
/
src
/
helper-functions
/
stringify-filter.js
9 lines
•
263 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// https://stackoverflow.com/a/38251445/1123955
function
stringifyFilter
(
_key, value
) {
if
(value
instanceof
RegExp
) {
return
value.
toString
(); }
return
value; }
export
{ stringifyFilter, };
//# sourceMappingURL=stringify-filter.js.map