Skip to content
This repository was archived by the owner on Jul 20, 2021. It is now read-only.

Commit 3ecc365

Browse files
author
Per Kristian Kummermo
committed
fix(hextofloat): add missing name to hex to float
1 parent 01b79f6 commit 3ecc365

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/mappers/HexToFloat.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export interface IHexToFloatConfig {
88
export class HexToFloat implements IMapper {
99
static ident: string = "HEXTOFLOAT";
1010
static description: string = "Hex to float";
11+
name: string = "Hex to float";
1112

1213
endianness: Endianness = Endianness.BIG_ENDIAN;
1314
hexRegExp: RegExp = new RegExp(/^[a-fxA-F0-9_]+$/);

0 commit comments

Comments
 (0)