This is a TypeScript port of chromium-pickle-js so as to avoid the use of `const pickle = require('chromium-pickle-js')` in TypeScript projects
npm install chromium-pickle-tsts
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