1.0.1 • Published 4 years ago

chromium-pickle-ts v1.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

Chromium Pickle TS

Usage

import { Pickle } from "chromium-pickle-ts";

const pickle = new PickleFactory();

Buffer buf = new Buffer.alloc(8);
const fromBuf = pickle.createFromBuffer(buf);

const read = fromBuf.createIterator().readUint32();

Super basic example that's not really perfect syntax. Everything after const pickle = new PickleFactory(); works exactly the same as chromium-pickle-js