UNPKG

electr0lysis

Version:

Simple framework for data serialization and interchange.

11 lines 335 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Uint32Decoder { decode(type, view, offset, context) { const value = view.getUint32(offset); const size = 4; return { value, size }; } } exports.default = Uint32Decoder; //# sourceMappingURL=Uint32Decoder.js.map