@isopodlabs/binary_libs 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/elf.js +2 -2
  2. package/package.json +1 -1
package/dist/elf.js CHANGED
@@ -41,7 +41,7 @@ const OSABI = {
41
41
  HPUX: 1, // HP-UX operating system
42
42
  STANDALONE: 255, // Standalone (embedded)application
43
43
  };
44
- const Ident = {
44
+ const Ident = binary.SizeType(16, {
45
45
  //enum {MAGIC = '\177ELF'};
46
46
  magic: binary.UINT32_LE,
47
47
  file_class: binary.asEnum(binary.UINT8, CLASS),
@@ -53,7 +53,7 @@ const Ident = {
53
53
  abiversion: binary.UINT8,
54
54
  pad: binary.ArrayType(7, binary.UINT8),
55
55
  })
56
- };
56
+ });
57
57
  const ET = {
58
58
  NONE: 0, // No file type
59
59
  REL: 1, // Relocatable file
package/package.json CHANGED
@@ -41,5 +41,5 @@
41
41
  "dependencies": {
42
42
  "@isopodlabs/binary": "^1.0.3"
43
43
  },
44
- "version": "0.2.1"
44
+ "version": "0.2.2"
45
45
  }