fix: plainToInstance loses values for the Map type if key matches a prototype value of Map (e.g. "size") #1342
Labels
status: needs triage
Issues which needs to be reproduced to be verified report.
type: fix
Issues describing a broken feature.
Description
I have a class which contains a Map as an attribute:
My map contains a key-value pair, e.g.
"size" -> 1337
which is preserved when callinginstanceToPlain
but is lost when callingplainToInstance
Minimal code-snippet showcasing the problem
The following code adds some values to the map, converts it to plain and then back to the instance of Test.
And my tsconfig.json
Expected behavior
I expect the map containing exactly the same (key, value) pairs in the
test
and thetest2
instance.Actual behavior
The map in
test2
is missing thesize
value. Here is the console output of the code above:The same happens for other keys which are part of the Map prototype itself, like
has
,clear
, ...Further analysis
I already inspected the code and found the problem, which is in this part of the code:
class-transformer/src/TransformOperationExecutor.ts
Lines 298 to 306 in 67fec03
When this code is called during transformation
newValueKey
issize
anddescriptor
then is{get: [Function: get size],set: undefined,enumerable: false,configurable: true}
which makes the expression in L303 evaluate to true and thus skips addingsize
to the map with thecontinue
in L306.While skipping these values for objects makes a lot of sense it does not for the
Map
type:class-transformer/src/TransformOperationExecutor.ts
Lines 344 to 350 in 67fec03
In this code snippet when the value is actually added to the object or map there is a check if the type is a
Map
and if yes, the.set()
function ofMap
is used, thus not inducing any problems with keys likesize
Possible fix
A possible fix should be pretty easy, just replace this code
class-transformer/src/TransformOperationExecutor.ts
Line 297 in 67fec03
by
The text was updated successfully, but these errors were encountered: