Files
pezkuwi-common/packages/x-textdecoder/src/fallback.ts
T
pezkuwichain a5542fdd87 Rebrand: polkadot → pezkuwi internal references fixed
- Fixed internal @polkadot references to @pezkuwi
- Updated hw-ledger and hw-ledger-transports packages
- Updated keyring and networks packages
- Version 14.0.7
2026-01-07 02:34:39 +03:00

22 lines
495 B
TypeScript

// Copyright 2017-2025 @pezkuwi/x-textencoder authors & contributors
// SPDX-License-Identifier: Apache-2.0
// This is very limited, only handling Ascii values
export class TextDecoder {
__encoding?: string;
constructor (encoding?: 'utf-8' | 'utf8') {
this.__encoding = encoding;
}
decode (value: Uint8Array): string {
let result = '';
for (let i = 0, count = value.length; i < count; i++) {
result += String.fromCharCode(value[i]);
}
return result;
}
}