We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
jBinary supports dynamic loading via AMD too:
jBinary
// somewhere in config: require.config({ paths: { jdataview: '//jdataview.github.io/dist/jdataview.js', jbinary: '//jdataview.github.io/dist/jbinary.js', } }); // ... // in code: require(['jbinary'], function (jBinary) { var typeSet = { magic: ['array', 'uint8', 4] }; jBinary.load('file.bin', typeSet, function (err, binary) { console.log(binary.read('magic')); }); });