@automapper/pojos
Advanced tools
Comparing version 7.2.0 to 7.2.1
{ | ||
"name": "@automapper/pojos", | ||
"version": "7.2.0", | ||
"version": "7.2.1", | ||
"sideEffects": false, | ||
@@ -32,4 +32,4 @@ "engines": { | ||
"peerDependencies": { | ||
"@automapper/core": "7.2.0" | ||
"@automapper/core": "7.2.1" | ||
} | ||
} |
@@ -26,3 +26,5 @@ "use strict"; | ||
const value = (0, core_1.isDefined)(valueAtKey) | ||
? new Date(valueAtKey) | ||
? Array.isArray(valueAtKey) | ||
? [...valueAtKey] | ||
: new Date(valueAtKey) | ||
: undefined; | ||
@@ -29,0 +31,0 @@ (0, core_1.setMutate)(obj, key, value); |
Sorry, the diff of this file is not supported yet
25645
37242
359