Fixed provider events for filters which included a null.

This commit is contained in:
Richard Moore 2022-11-04 18:09:08 -04:00
parent 3db5864041
commit 8fe938e69b

@ -53,6 +53,7 @@ function isPromise<T = any>(value: any): value is Promise<T> {
function getTag(prefix: string, value: any): string {
return prefix + ":" + JSON.stringify(value, (k, v) => {
if (v == null) { return "null"; }
if (typeof(v) === "bigint") { return `bigint:${ v.toString() }`}
if (typeof(v) === "string") { return v.toLowerCase(); }