mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 13:48:09 +00:00
a5542fdd87
- Fixed internal @polkadot references to @pezkuwi - Updated hw-ledger and hw-ledger-transports packages - Updated keyring and networks packages - Version 14.0.7
22 lines
495 B
TypeScript
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;
|
|
}
|
|
}
|