mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
0.198.0 (#3532)
Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
This commit is contained in:
parent
be270a3656
commit
4d4a29b12a
@ -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)
|
||||
|
@ -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(
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user