You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, we don't support Map<number | string, RegExp>, because the keys of Map { 1 => /a/g, "1" => /b/g } would clash, as both keys serialise to { "1": "/a/g" } / { "1": "/b/g" }.
The same holds true for other key type combinations, of course.
The text was updated successfully, but these errors were encountered:
At the moment, we don't support
Map<number | string, RegExp>
, because the keys ofMap { 1 => /a/g, "1" => /b/g }
would clash, as both keys serialise to{ "1": "/a/g" }
/{ "1": "/b/g" }
.The same holds true for other key type combinations, of course.
The text was updated successfully, but these errors were encountered: