Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
This commit is contained in:
denobot 2023-08-10 05:04:05 -04:00 committed by GitHub
parent be270a3656
commit 4d4a29b12a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
### 0.198.0 / 2023.08.10
- feat(path): single file exports (#3510)
### 0.197.0 / 2023.08.03
- BREAKING(testing/snapshot): change tab char serialization (#3447)

View File

@ -56,7 +56,7 @@ export function assertObjectMatch(
} // On nested objects references, build a filtered object recursively
else if (typeof value === "object" && value !== null) {
const subset = (b as loose)[key];
if ((typeof subset === "object") && (subset)) {
if ((typeof subset === "object") && subset) {
// When both operands are maps, build a filtered map with common keys and filter nested objects inside
if ((value instanceof Map) && (subset instanceof Map)) {
filtered[key] = new Map(

View File

@ -5,4 +5,4 @@
* the cli's API is stable. In the future when std becomes stable, likely we
* will match versions with cli as we have in the past.
*/
export const VERSION = "0.197.0";
export const VERSION = "0.198.0";