Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Uint8Array are not being filled in plainToClassFromExist #1815

Open
vladbarcelo opened this issue Mar 11, 2025 · 0 comments
Open

fix: Uint8Array are not being filled in plainToClassFromExist #1815

vladbarcelo opened this issue Mar 11, 2025 · 0 comments
Labels
status: needs triage Issues which needs to be reproduced to be verified report. type: fix Issues describing a broken feature.

Comments

@vladbarcelo
Copy link

Description

Using plainToClassFromExist on classes with properties of type Uint8Array leads to data loss - the properties in the resulting class contain empty arrays.

Minimal code-snippet showcasing the problem

import { plainToClassFromExist, Type } from 'class-transformer';

class SomeClass {
  @Type(() => Uint8Array)
  public arr: Uint8Array;
}

const raw: SomeClass = {
  arr: new Uint8Array([1, 2, 3]),
};

console.log(raw, plainToClassFromExist(SomeClass, raw));

Expected behavior

{ arr: Uint8Array(3) [ 1, 2, 3 ] } [class SomeClass] { arr: Uint8Array(3) [ 1, 2, 3 ] }

Actual behavior

{ arr: Uint8Array(3) [ 1, 2, 3 ] } [class SomeClass] { arr: Uint8Array(0) [] }
                                                                       ^ data being lost
@vladbarcelo vladbarcelo added status: needs triage Issues which needs to be reproduced to be verified report. type: fix Issues describing a broken feature. labels Mar 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: needs triage Issues which needs to be reproduced to be verified report. type: fix Issues describing a broken feature.
Development

No branches or pull requests

1 participant