You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Muqriz 48f16bfc3e initail first преди 4 месеца
..
README.md initail first преди 4 месеца
cli.js initail first преди 4 месеца
index.d.ts initail first преди 4 месеца
index.js initail first преди 4 месеца
package.json initail first преди 4 месеца
test.js initail first преди 4 месеца

README.md

read-binary-file-arch

A node module that reads the CPU architecture of a binary file.

npm install read-binary-file-arch

Usage

Pass a file path to readBinaryFileArch.

[!NOTE]
Windows only supports valid PE binary files.

var { readBinaryFileArch } = require('read-binary-file-arch');

readBinaryFileArch(filePath).then((arch) => {
  console.log('arch: ', arch);
}).catch((error) => {
  console.error(error.message);
});

License

MIT